/* Custom Modal Style - Elegan & Responsif */
.modal-content {
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(60, 60, 60, 0.15);
    border: none;
}

.modal-header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: 36px;
    border-bottom: none;
    background: linear-gradient(271deg, #1e5550 0%, #1e5550 100%);
    border-color: #f3f3f3;
    color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.modal-title {
    font-size: 1rem !important;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1px;
}

.close {
    color: #fff;
    opacity: 1;
}

.form-control:focus {
    border-color: #8f94fb;
    box-shadow: 0 0 0 0.2rem rgba(143, 148, 251, 0.25);
}

.btn-primary {
    background: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%);
    border: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #8f94fb 0%, #4e54c8 100%);
}

@media (max-width: 576px) {
    .modal-content {
        border-radius: 0.5rem;
    }
    .modal-header, .modal-footer {
        padding: 1rem;
    }
} 