﻿/* site.css - Glassmorphism Theme */
/* Add to: wwwroot/css/site.css */

/* ===== GLASSMORPHISM BASE STYLES ===== */
.glass-container {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border-radius: 16px;
}

.glass-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.glass-button {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 10px 20px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .glass-button:hover {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(52, 152, 219, 0.3);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.glass-back-button {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    padding: 10px 20px;
    color: #3498db;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .glass-back-button:hover {
        background: rgba(52, 152, 219, 0.1);
        transform: translateY(-1px);
    }

/* ===== GLASS DATE PICKER ===== */
.glass-date-input {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 12px 45px 12px 15px;
    width: 100%;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .glass-date-input:hover {
        background: rgba(255, 255, 255, 0.85);
        border-color: rgba(52, 152, 219, 0.4);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.1);
    }

    .glass-date-input:focus {
        background: rgba(255, 255, 255, 0.9);
        border-color: #3498db;
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }

/* Flatpickr Calendar Glass Styling */
.flatpickr-calendar {
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Calendar Days */
.flatpickr-day {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    color: #2c3e50 !important;
    font-weight: 500 !important;
    margin: 2px !important;
    height: 40px !important;
    max-width: 40px !important;
    line-height: 40px !important;
    transition: all 0.2s ease !important;
}

    .flatpickr-day:hover {
        background: rgba(52, 152, 219, 0.2) !important;
        border-color: rgba(52, 152, 219, 0.4) !important;
        transform: translateY(-2px);
    }

    /* Today */
    .flatpickr-day.today {
        background: rgba(52, 152, 219, 0.3) !important;
        border: 1px solid #3498db !important;
        color: white !important;
        font-weight: 600 !important;
    }

        .flatpickr-day.today:hover {
            background: rgba(52, 152, 219, 0.5) !important;
        }

    /* Selected Date */
    .flatpickr-day.selected {
        background: #3498db !important;
        border-color: #2980b9 !important;
        color: white !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4) !important;
        transform: scale(1.05);
    }

/* Calendar Header */
.flatpickr-month {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.7) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    height: 50px !important;
    margin-bottom: 15px !important;
}

/* Navigation Arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 12px !important;
    color: #3498db !important;
    padding: 10px !important;
    transition: all 0.2s ease !important;
}

    .flatpickr-prev-month:hover,
    .flatpickr-next-month:hover {
        background: rgba(52, 152, 219, 0.1) !important;
        transform: translateY(-1px);
    }

/* Weekdays */
.flatpickr-weekday {
    color: #7f8c8d !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

/* Input Icon */
.date-input-wrapper {
    position: relative;
}

.date-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    font-size: 1rem;
    pointer-events: none;
}

/* ===== GLASS RADIO BUTTONS ===== */
.glass-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.glass-radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .glass-radio-item:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .glass-radio-item.selected {
        background: rgba(52, 152, 219, 0.1);
        border: 1px solid rgba(52, 152, 219, 0.3);
    }

/* Larger Radio Buttons */
input[type="radio"].glass-radio-large {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #3498db;
    transform: scale(1.2);
    margin: 0 10px;
}

.glass-radio-label {
    cursor: pointer;
    color: #2c3e50;
    user-select: none;
    flex-grow: 1;
    font-weight: 500;
}

/* ===== GLASS FORM INPUTS ===== */
.glass-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.glass-input-label {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

    .glass-input-label i {
        color: #3498db;
        font-size: 0.9rem;
    }

.glass-enhanced-input {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    width: 100% !important;
    color: #2c3e50 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

    .glass-enhanced-input:hover {
        background: rgba(255, 255, 255, 0.85) !important;
        border-color: rgba(52, 152, 219, 0.4) !important;
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.1) !important;
    }

    .glass-enhanced-input:focus {
        background: rgba(255, 255, 255, 0.9) !important;
        border-color: #3498db !important;
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2) !important;
    }

/* ===== GLASS TABS ===== */
.glass-tab {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    color: #555;
    padding: 12px 24px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

    .glass-tab:hover {
        background: rgba(255, 255, 255, 0.7);
        color: #2c3e50;
    }

    .glass-tab.active {
        background: rgba(255, 255, 255, 0.9);
        color: #3498db;
        border-color: rgba(52, 152, 219, 0.3);
        font-weight: 600;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    }

/* ===== GLASS BADGES & ICONS ===== */
.glass-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #3498db;
    display: inline-flex;
    align-items: center;
}

.glass-icon {
    width: 48px;
    height: 48px;
    background: rgba(52, 152, 219, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
}

/* ===== BASE THEME SETTINGS ===== */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    color: #2c3e50;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    font-weight: 600;
}

.text-primary {
    color: #3498db !important;
}

/* Larger Checkboxes (global override) */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
    transform: scale(1.2);
    margin: 0 8px;
}

/* Number Input Spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.5;
}

/* Placeholder Styling */
::placeholder {
    color: #95a5a6 !important;
    opacity: 0.7 !important;
}

/* ===== RMT SPECIFIC GLASS STYLES ===== */
.rmt-action-bar.glass-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.glass-practitioner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.glass-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .glass-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.glass-practitioner-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 120px;
}

.glass-practitioner-name {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.glass-practitioner-title {
    display: block;
    color: #7f8c8d;
    font-size: 0.8rem;
}

/* ===== UTILITIES ===== */
.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .glass-date-input,
    .glass-enhanced-input {
        padding: 10px 40px 10px 12px !important;
        font-size: 0.9rem !important;
    }

    .flatpickr-calendar {
        width: 280px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .glass-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
/* ── Patient Modal inputs — add to site.css ── */
.floating-glass-modal .glass-input {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 14px !important;
    color: #1A2B3C !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

    .floating-glass-modal .glass-input:focus {
        outline: none !important;
        border-color: #3B82F6 !important;
        background: white !important;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    }

    .floating-glass-modal .glass-input:hover {
        border-color: rgba(59, 130, 246, 0.4) !important;
        background: white !important;
    }

    .floating-glass-modal .glass-input::placeholder {
        color: #8A9FB0 !important;
        font-style: italic !important;
        font-size: 0.9rem !important;
    }



/* ── PatientInsuranceTab — Select Case dropdown ── */
.tab-content .form-select,
.tab-content .form-control {
    padding: 0.72rem 1rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 14px !important;
    color: #1A2B3C !important;
    font-size: 0.92rem !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.05) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.9rem center !important;
    padding-right: 2.6rem !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

    .tab-content .form-select:focus,
    .tab-content .form-control:focus {
        outline: none !important;
        border-color: #3B82F6 !important;
        background: white !important;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
    }

    .tab-content .form-select:hover,
    .tab-content .form-control:hover {
        border-color: rgba(59, 130, 246, 0.42) !important;
        background: white !important;
    }

.tab-content .form-label {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: #374151 !important;
    margin-bottom: 0.45rem !important;
}

/* ── Insurance modal inputs ── */
.glassmorphism-modal .form-control,
.glassmorphism-modal .form-select,
.glassmorphism-modal input[type="text"],
.glassmorphism-modal input[type="number"],
.glassmorphism-modal input[type="date"] {
    padding: 0.72rem 1rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 14px !important;
    color: #1A2B3C !important;
    font-size: 0.92rem !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.05) !important;
}

    .glassmorphism-modal .form-control:focus,
    .glassmorphism-modal .form-select:focus,
    .glassmorphism-modal input:focus {
        outline: none !important;
        border-color: #3B82F6 !important;
        background: white !important;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
    }

    .glassmorphism-modal input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 0.55 !important;
        cursor: pointer !important;
        filter: invert(38%) sepia(100%) saturate(400%) hue-rotate(195deg) !important;
    }

.glassmorphism-modal .form-label,
.glassmorphism-modal label {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: #374151 !important;
    margin-bottom: 0.45rem !important;
}

/* ── PatientCaseInsurancePanel modal inputs ── */
.glassmorphism-modal .form-control,
.glassmorphism-modal .form-select {
    padding: 0.72rem 1rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 14px !important;
    color: #1A2B3C !important;
    font-size: 0.92rem !important;
    font-family: inherit !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.05) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.glassmorphism-modal .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.9rem center !important;
    padding-right: 2.6rem !important;
}

    .glassmorphism-modal .form-control:focus,
    .glassmorphism-modal .form-select:focus {
        outline: none !important;
        border-color: #3B82F6 !important;
        background: white !important;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
    }

    .glassmorphism-modal .form-control:hover,
    .glassmorphism-modal .form-select:hover {
        border-color: rgba(59, 130, 246, 0.42) !important;
        background: white !important;
    }

.glassmorphism-modal input[type="date"].form-control {
    cursor: pointer !important;
    color-scheme: light !important;
}

    .glassmorphism-modal input[type="date"].form-control::-webkit-calendar-picker-indicator {
        opacity: 0.55 !important;
        cursor: pointer !important;
        filter: invert(38%) sepia(100%) saturate(400%) hue-rotate(195deg) !important;
    }

.glassmorphism-modal .form-label {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: #374151 !important;
    margin-bottom: 0.4rem !important;
}

/* ── glassmorphism-content section panels ── */
.glassmorphism-content {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(59, 130, 246, 0.12) !important;
    border-radius: 14px !important;
}
/* ── Fix Insurance modal positioning ── */
.glassmorphism-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1040 !important;
    background: rgba(10, 20, 40, 0.4) !important;
    backdrop-filter: blur(5px) !important;
}

    /* Modal dialog sits above backdrop */
    .glassmorphism-backdrop + .modal-dialog {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1050 !important;
        margin: 0 !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        width: 95% !important;
        max-width: 1140px !important;
    }

        .glassmorphism-backdrop + .modal-dialog .modal-content {
            max-height: 90vh !important;
            overflow-y: auto !important;
        }
/* ── Insurance modal — increase opacity ── */
.glassmorphism-backdrop {
    background: rgba(10, 20, 40, 0.65) !important;
    backdrop-filter: blur(8px) !important;
}

    .glassmorphism-backdrop + .modal-dialog .modal-content.glassmorphism-modal {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: none !important;
    }
/* Patient Intake — Emergency Contact inputs (global, not scoped) */
.info-glass-emergency .form-group {
    width: 100%;
}

.info-glass-emergency input.glass-input,
.info-glass-emergency select.glass-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: 46px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    color: #1A2B3C;
    font-size: 0.95rem;
}

    .info-glass-emergency input.glass-input:focus,
    .info-glass-emergency select.glass-input:focus {
        outline: none;
        border-color: #3B82F6;
        background: white;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
/* =============================================================
   INVOICES PAGE — paste this block into your site.css
   Scoped to .invoices-page-wrap so nothing else is affected
   ============================================================= */

/* PAGE WRAPPER */
.invoices-page-wrap {
    padding: 1.75rem 2rem 2rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .invoices-page-wrap {
        padding: 1rem 1rem 1.5rem 1rem;
    }
}

/* ALL CARDS (Overview + Toolbar + Table) */
.invoices-page-wrap .card,
.invoices-page-wrap .glass-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04) !important;
}

.invoices-page-wrap .card-body {
    background: transparent !important;
}

/* LAST 30 DAYS SELECT + ALL FORM SELECTS */
.invoices-page-wrap select,
.invoices-page-wrap .form-select {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.15s ease;
}

    .invoices-page-wrap select:focus,
    .invoices-page-wrap .form-select:focus {
        background-color: rgba(255, 255, 255, 0.98) !important;
        border-color: rgba(102, 126, 234, 0.5) !important;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12) !important;
        outline: none !important;
    }

/* SEARCH INPUT */
.invoices-page-wrap .form-control {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.15s ease;
}

    .invoices-page-wrap .form-control:focus {
        background-color: rgba(255, 255, 255, 0.98) !important;
        border-color: rgba(102, 126, 234, 0.5) !important;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12) !important;
        outline: none !important;
    }

/* FILTER DROPDOWN BUTTON */
.invoices-page-wrap .location-selector-btn {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.15s ease;
}

    .invoices-page-wrap .location-selector-btn:hover {
        background: rgba(255, 255, 255, 0.98) !important;
        border-color: rgba(102, 126, 234, 0.4) !important;
    }

/* CREATE NEW BUTTON */
.invoices-page-wrap .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35) !important;
    font-weight: 600;
    transition: all 0.15s ease;
}

    .invoices-page-wrap .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(102, 126, 234, 0.45) !important;
    }

/* ACTION BUTTONS (📄 📥) */
.invoices-page-wrap td .btn-sm {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    color: #4b5563 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.15s ease;
}

    .invoices-page-wrap td .btn-sm:hover {
        background: rgba(102, 126, 234, 0.12) !important;
        border-color: rgba(102, 126, 234, 0.35) !important;
        color: #667eea !important;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.15) !important;
    }

/* TABLE HEADER */
.invoices-page-wrap .table thead th {
    background: rgba(248, 250, 255, 0.9) !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.15) !important;
    color: #374151 !important;
    font-weight: 600;
}

/* TABLE ROWS HOVER */
.invoices-page-wrap .table-hover tbody tr:hover td {
    background: rgba(102, 126, 234, 0.05) !important;
}

/* OVERFLOW FIX — dropdown not clipped by table */
.invoices-page-wrap .card,
.invoices-page-wrap .card-body,
.invoices-page-wrap .table-responsive,
.invoices-page-wrap table,
.invoices-page-wrap thead,
.invoices-page-wrap tbody,
.invoices-page-wrap tr,
.invoices-page-wrap td {
    overflow: visible !important;
}

    .invoices-page-wrap td:last-child {
        position: relative;
        white-space: nowrap;
    }

/* 3-DOT MENU WRAPPER */
.actions-menu-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}

/* 3-DOT BUTTON */
.actions-dot-btn {
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.15s ease;
    padding: 0;
}

    .actions-dot-btn:hover {
        background: #f8f9fa;
        border-color: #eef2f7;
        color: #2c3e50;
    }

    .actions-dot-btn .dots {
        font-size: 18px;
        line-height: 1;
        font-weight: 800;
        display: inline-block;
    }

/* FLOATING DROPDOWN MENU */
.actions-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: 220px !important;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    z-index: 99999 !important;
    padding: 6px 0;
    overflow: visible !important;
}

    .actions-menu::before {
        content: "";
        position: absolute;
        top: -6px;
        right: 14px;
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-left: 1px solid #e5e7eb;
        border-top: 1px solid #e5e7eb;
        transform: rotate(45deg);
    }

    .actions-menu button {
        width: 100% !important;
        background: none;
        border: none;
        padding: 10px 14px;
        text-align: left;
        font-size: 0.86rem;
        color: #2c3e50;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap !important;
        line-height: 1.2;
    }

        .actions-menu button:hover {
            background: #f8f9fc;
        }

/* MODAL OVERLAY */
.glass-overlay {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* MODAL CONTAINER */
.glass-modal {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
    z-index: 100000;
}

    .glass-modal.scrollable-modal {
        max-width: 600px;
    }

/* MODAL HEADER */
.glass-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    border-radius: 18px 18px 0 0;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.btn-close-glass {
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: background 0.15s ease, color 0.15s ease;
}

    .btn-close-glass:hover {
        background: rgba(0, 0, 0, 0.12);
        color: #1a202c;
    }

/* MODAL SCROLL BODY */
.modal-scroll-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glass-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* MODAL FOOTER */
.glass-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    border-radius: 0 0 18px 18px;
}

/* MODAL BUTTONS */
.btn-glass-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

    .btn-glass-primary:hover:not(:disabled) {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .btn-glass-primary:disabled,
    .btn-glass-primary.btn-disabled {
        opacity: 0.45;
        cursor: not-allowed;
        transform: none;
    }

.btn-glass-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    background: transparent;
    color: #6b7280;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

    .btn-glass-outline:hover {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.25);
        color: #374151;
    }

/* INVOICE SUMMARY CARD (inside modal) */
.invoice-summary-card {
    background: rgba(102, 126, 234, 0.07);
    border: 1px solid rgba(102, 126, 234, 0.18);
    border-radius: 12px;
    padding: 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.summary-label {
    color: #6b7280;
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: #1a202c;
}

    .summary-value.highlight {
        color: #667eea;
        font-size: 1rem;
    }

.summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0.25rem 0;
}

/* PAYMENT METHOD GRID */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.method-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.4rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 0.8rem;
}

    .method-option:hover {
        border-color: #667eea;
        background: rgba(102, 126, 234, 0.05);
    }

    .method-option.selected {
        border-color: #667eea;
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        font-weight: 600;
    }

.method-icon {
    font-size: 1.3rem;
}

.method-label {
    font-size: 0.75rem;
}

/* NOTES TEXTAREA */
.notes-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.88rem;
    resize: vertical;
    transition: border-color 0.15s ease;
    font-family: inherit;
}

    .notes-textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
    }

.notes-counter {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: right;
}

/* STATUS PREVIEW */
.status-preview {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.status-label {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* =============================================================
   END OF INVOICES PAGE BLOCK
   ============================================================= */

/* ─────────────────────────────────────────────
   TOOLBAR — 3-column layout
───────────────────────────────────────────── */
.invoices-toolbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.toolbar-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

    .toolbar-center .form-control {
        width: 100%;
    }

.toolbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Create New — single row, no wrapping */
.toolbar-create-btn {
    white-space: nowrap !important;
    padding: 0.5rem 1.1rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
}

/* Filter dropdown — expand to the RIGHT */
.invoices-page-wrap .location-dropdown {
    position: relative;
}

.invoices-page-wrap .location-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important; /* anchored to LEFT edge of button */
    right: auto !important; /* NOT the right edge */
    min-width: 240px !important;
    z-index: 99999 !important;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
    padding: 6px 0;
}

@media (max-width: 768px) {
    .invoices-toolbar {
        grid-template-columns: 1fr;
    }

    .toolbar-right {
        width: 100%;
    }

    .toolbar-create-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────
   TOOLBAR ADJUSTMENTS
   - Filter By: doubled width toward right
   - Search: half width, centered in middle column
───────────────────────────────────────────── */

/* Widen the filter selector button */
.invoices-page-wrap .location-selector-btn {
    min-width: 220px !important;
    justify-content: space-between;
}

/* Search: half width, centered */
.toolbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .toolbar-center .form-control {
        width: 50% !important;
        max-width: 50% !important;
    }

/* ─────────────────────────────────────────────
   FIX 1 — Search field: truly half width
   (constraining the CENTER column itself, not just the input)
───────────────────────────────────────────── */
.invoices-toolbar {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
}

.toolbar-center {
    justify-content: center !important;
    max-width: 100%;
}

    .toolbar-center .form-control {
        width: 50% !important;
        max-width: 50% !important;
        min-width: 0 !important;
    }

    /* ─────────────────────────────────────────────
   FIX 2 — Search field placeholder + typed text:
   centered, bold, dark blue
───────────────────────────────────────────── */
    .toolbar-center .form-control {
        text-align: center !important;
        font-weight: 700 !important;
        color: #1a2f5e !important;
    }

        .toolbar-center .form-control::placeholder {
            text-align: center !important;
            font-weight: 700 !important;
            color: #1a2f5e !important;
            opacity: 0.6;
        }

/* ─────────────────────────────────────────────
   FIX 3 — Patient Name in the table list: dark blue
───────────────────────────────────────────── */
.invoices-page-wrap tbody td a.text-danger {
    color: #1a2f5e !important;
}

.invoices-page-wrap tbody td .patient-name,
.invoices-page-wrap tbody tr td:nth-child(3) a {
    color: #1a2f5e !important;
    font-weight: 700 !important;
}

/* ─────────────────────────────────────────────
   FIX 4 — Status column: all bold + colour coded
───────────────────────────────────────────── */
.invoices-page-wrap tbody td .status-badge {
    font-weight: 700 !important;
}

    /* Paid — green */
    .invoices-page-wrap tbody td .status-badge.active {
        color: #166534 !important;
        background: rgba(22, 101, 52, 0.1) !important;
        border-radius: 6px;
        padding: 2px 8px;
    }

    /* Draft — grayish */
    .invoices-page-wrap tbody td .status-badge.inactive {
        color: #6b7280 !important;
        background: rgba(107, 114, 128, 0.1) !important;
        border-radius: 6px;
        padding: 2px 8px;
    }

    /* Sent — dark yellow/amber */
    .invoices-page-wrap tbody td .status-badge.sent,
    .invoices-page-wrap tbody td .status-badge[class*="sent"] {
        color: #92400e !important;
        background: rgba(146, 64, 14, 0.1) !important;
        border-radius: 6px;
        padding: 2px 8px;
        font-weight: 700 !important;
    }

    /* Partial — blue */
    .invoices-page-wrap tbody td .status-badge.partial {
        color: #1e40af !important;
        background: rgba(30, 64, 175, 0.1) !important;
        border-radius: 6px;
        padding: 2px 8px;
        font-weight: 700 !important;
    }

    /* Overdue — red */
    .invoices-page-wrap tbody td .status-badge.overdue {
        color: #991b1b !important;
        background: rgba(153, 27, 27, 0.1) !important;
        border-radius: 6px;
        padding: 2px 8px;
        font-weight: 700 !important;
    }

    /* Cancelled — dark gray */
    .invoices-page-wrap tbody td .status-badge.cancelled {
        color: #374151 !important;
        background: rgba(55, 65, 81, 0.1) !important;
        border-radius: 6px;
        padding: 2px 8px;
        font-weight: 700 !important;
    }

/* ─────────────────────────────────────────────
   OVERRIDES — correcting previous fixes
───────────────────────────────────────────── */

/* FIX — Search field: force small fixed width, not percentage */
.toolbar-center {
    justify-content: center !important;
}

    .toolbar-center .form-control {
        width: 220px !important;
        max-width: 220px !important;
        min-width: 0 !important;
        text-align: center !important;
        font-weight: 700 !important;
        color: #1a2f5e !important;
    }

        .toolbar-center .form-control::placeholder {
            text-align: center !important;
            font-weight: 700 !important;
            color: #1a2f5e !important;
            opacity: 0.55;
        }

/* FIX — Sent status: Yellow */
.invoices-page-wrap tbody td .status-badge.active {
    color: #854d0e !important;
    background: rgba(234, 179, 8, 0.15) !important;
}

/* Wait — active = Paid (green), need to re-separate */
/* Paid = green */
.invoices-page-wrap tbody td span.status-badge.active:has(.dot) {
    color: #166534 !important;
    background: rgba(22, 101, 52, 0.1) !important;
}

/* Better approach — target by text content via specific markup */
/* Since GetStatusBadgeClass returns "active" for both Paid and Sent,
   we need to fix the C# method to return distinct classes */

/* Sent — Yellow */
.invoices-page-wrap tbody td .status-sent,
.invoices-page-wrap .badge-sent {
    color: #854d0e !important;
    background: rgba(234, 179, 8, 0.15) !important;
    border-radius: 6px;
    padding: 2px 8px;
    font-weight: 700 !important;
}

/* FIX — Patient Name: gradient blue */
.invoices-page-wrap tbody tr td:nth-child(3) a {
    background: linear-gradient(90deg, #1a2f5e 0%, #3b82f6 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* ─────────────────────────────────────────────
   STATUS BADGES — clean distinct classes
   (requires GetStatusBadgeClass fix in C#)
───────────────────────────────────────────── */
.status-paid {
    color: #166534 !important;
    background: rgba(22, 101, 52, 0.1) !important;
    font-weight: 700 !important;
    border-radius: 6px;
    padding: 2px 8px;
}

.status-sent {
    color: #854d0e !important;
    background: rgba(234, 179, 8, 0.15) !important;
    font-weight: 700 !important;
    border-radius: 6px;
    padding: 2px 8px;
}

.status-partial {
    color: #1e40af !important;
    background: rgba(30, 64, 175, 0.1) !important;
    font-weight: 700 !important;
    border-radius: 6px;
    padding: 2px 8px;
}

.status-draft {
    color: #6b7280 !important;
    background: rgba(107, 114, 128, 0.1) !important;
    font-weight: 700 !important;
    border-radius: 6px;
    padding: 2px 8px;
}

.status-overdue {
    color: #991b1b !important;
    background: rgba(153, 27, 27, 0.1) !important;
    font-weight: 700 !important;
    border-radius: 6px;
    padding: 2px 8px;
}

.status-cancelled {
    color: #374151 !important;
    background: rgba(55, 65, 81, 0.1) !important;
    font-weight: 700 !important;
    border-radius: 6px;
    padding: 2px 8px;
}
/* ─────────────────────────────────────────────
   SEARCH FIELD — centered + bold + gradient blue text
───────────────────────────────────────────── */
.invoices-page-wrap input[type="text"],
.invoices-page-wrap input[type="search"],
.invoices-page-wrap input.form-control[placeholder*="earch" i],
.invoices-page-wrap input.form-control#searchInput,
.invoices-page-wrap input.form-control[name*="search" i] {
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    /* Gradient text — the linear-gradient is what gets clipped to the text shape.
       The white layer underneath keeps the field looking white. */
    background-color: #ffffff !important;
    background-image: linear-gradient(90deg, #1a2f5e 0%, #3b82f6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    /* These two together force the text fill to be the gradient, not white */
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    caret-color: #1a2f5e !important;
}

    /* Placeholder stays solid dark blue (gradient on placeholder is unreliable) */
    .invoices-page-wrap input[type="text"]::placeholder,
    .invoices-page-wrap input[type="search"]::placeholder,
    .invoices-page-wrap input.form-control[placeholder*="earch" i]::placeholder,
    .invoices-page-wrap input.form-control#searchInput::placeholder,
    .invoices-page-wrap input.form-control[name*="search" i]::placeholder {
        text-align: center !important;
        font-weight: 800 !important;
        color: #1a2f5e !important;
        -webkit-text-fill-color: #1a2f5e !important;
        opacity: 0.55 !important;
    }
.services-table .service-date-input {
    width: 100%;
    max-width: 140px;
    padding: 0.3rem 0.4rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
}

    .services-table .service-date-input:focus {
        outline: none;
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.12);
    }

/* ─────────────────────────────────────────────
   STATUS TOOLTIP — Wix-style dark tooltip
───────────────────────────────────────────── */
.zenx-status-tooltip {
    position: relative;
    display: inline-block;
    cursor: default;
}

    .zenx-status-tooltip:hover .zenx-status-tooltip-box,
    .zenx-status-tooltip:focus .zenx-status-tooltip-box {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.zenx-status-tooltip-box {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1a1f2e;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.18s ease;
    z-index: 99999;
    pointer-events: none;
}

    .zenx-status-tooltip-box::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #1a1f2e;
    }

.zenx-tip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 0.82rem;
}

.zenx-tip-label {
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.zenx-tip-value {
    color: #fff;
    font-weight: 600;
}

.zenx-tip-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 6px 0;
}

.zenx-tip-balance .zenx-tip-label {
    color: rgba(255,255,255,0.65);
}

.zenx-tip-balance .zenx-tip-value {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
}