/* ============================================
   MODAL STYLES
   ============================================ */

.modal-content {
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--gradient-gold);
    border-radius: 18px 18px 0 0;
    padding: 1.5rem 2rem;
}

.modal-title {
    color: var(--dark-navy);
    font-weight: 800;
    font-size: 1.5rem;
}

.modal-body {
    padding: 2.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 106, 0.25);
}

/* Custom Message Modal */
.message-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    z-index: 1050;
    text-align: center;
    max-width: 400px;
    width: 90%;
    display: none;
    border: 2px solid var(--primary-gold);
}

.message-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.message-modal .modal-title {
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 1rem;
}

.message-modal .modal-body p {
    font-size: 1.1rem;
    color: #495057;
}
