/* Modal Styles - Consistent across all templates */

/* Modal Size and Layout */
.modal-lg {
    max-width: 800px;
}

.modal-xl {
    max-width: 900px;
}

/* Modal Header */
.modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.5rem 0.5rem 0 0;
}

.modal-header .btn-close {
    filter: invert(1) brightness(200%);
}

/* Modal Body */
.modal-body {
    padding: 1.25rem;
}

/* Modal Footer */
.modal-footer {
    border-top: none;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Form Section Styles */
.form-section {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.form-section h6 {
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Form Controls */
.form-label {
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-control, .form-select {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Form Layout */
.form-section .row {
    margin-bottom: 0.5rem;
}

.form-section .row:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95vw;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-section {
        padding: 0.75rem;
    }
}
