.easy-eco-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

.easy-eco-modal-content {
    background: #ffffff;
    margin: 10% auto;
    padding: 20px 25px;
    border-radius: 8px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    font-family: inherit;
}

.easy-eco-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.easy-eco-modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.easy-eco-modal-buttons button {
    padding: 8px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

#easy-eco-cancel {
    background: #777;
    color: #fff;
}

#easy-eco-confirm {
    background: #007bff;
    color: #fff;
}

.easy-download-btn {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
}
.easy-download-btn:hover {
    opacity: 0.9;
}
