/* /Components/Auth/MfaVerify.razor.rz.scp.css */
.verifying-indicator[b-xmdmdwhnsv] {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .verifying-indicator .dot[b-xmdmdwhnsv] {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #6c757d;
        animation: pulse-b-xmdmdwhnsv 1s infinite ease-in-out;
    }

@keyframes pulse-b-xmdmdwhnsv {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}
/* /Components/Correspondence.razor.rz.scp.css */
/* Inactive tabs */
.container-fluid .nav-tabs .nav-item .nav-link[b-csqi49aete] {
    color: black !important;
}

    /* Active tab */
    .container-fluid .nav-tabs .nav-item .nav-link.active[b-csqi49aete] {
        background-color: var(--tab-active-background-color) !important;
        color: black !important;
        border-color: transparent !important;
    }
/* /Components/DatePicker.razor.rz.scp.css */
/* Container */
.datepicker[b-tqa0gm7jrd] {
    background: var(--custom-background-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    width: 280px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    font-family: inherit;
}

.datepicker-close[b-tqa0gm7jrd] {
    color: var(--primary-color);
    font-size: 1.6rem; /* bigger glyph */
    font-weight: 600;
    padding: 4px 8px; /* match .datepicker-nav */
    line-height: 1; /* keeps it vertically centered */
}
    .datepicker-close:hover[b-tqa0gm7jrd] {
        background: var(--custom-background-color);
    }


/* Header with month name and arrows */
.datepicker-header[b-tqa0gm7jrd] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: var(--tab-active-background-color);
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 600;
}
.datepicker-month[b-tqa0gm7jrd] {
    font-size: 1rem;
    color: var(--primary-color);
}

.datepicker-year[b-tqa0gm7jrd] {
    font-size: 1rem; /* bigger, matches header scale */
    padding: 4px 28px 4px 8px; /* more breathing room + space for custom arrow */
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    /* Remove native arrow */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /* Custom arrow */
    background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgMTAgNiIgd2lkdGg9IjEwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xIDFsNCA0IDQtNCIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
}

.datepicker-nav[b-tqa0gm7jrd] {
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--primary-color);
}

    .datepicker-nav:hover[b-tqa0gm7jrd] {
        background: var(--custom-background-color);
    }

/* Weekday header row */
.datepicker-weekdays[b-tqa0gm7jrd] {
    margin-top: 6px;
}

.datepicker-weekday[b-tqa0gm7jrd] {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* Grid of days */
.datepicker-grid[b-tqa0gm7jrd] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-top: 4px;
}

/* Day cell */
.datepicker-day[b-tqa0gm7jrd] {
    padding: 8px 6px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
}
    /* Empty days i.e. prev or next month */
    .datepicker-day.empty[b-tqa0gm7jrd] {
        background: transparent;
        cursor: default;
    }

    /* Hover */
    .datepicker-day:hover[b-tqa0gm7jrd] {
        background: var(--tab-active-background-color);
    }

    /* Selected day */
    .datepicker-day.selected[b-tqa0gm7jrd] {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 0 2px rgba(0,0,0,0.2);
    }

    .datepicker-day.disabled:hover[b-tqa0gm7jrd] {
        background: #eee;
    }

    /* Today */
    .datepicker-day.today[b-tqa0gm7jrd] {
        border: 2px solid var(--primary-color);
        border-radius: 4px;
    }

    /* Disabled (non-working) days */
    .datepicker-day.disabled[b-tqa0gm7jrd] {
        background: #eee;
        color: #bbb;
        cursor: not-allowed;
    }

.datepicker-day[b-tqa0gm7jrd],
.datepicker-nav[b-tqa0gm7jrd],
.datepicker-close[b-tqa0gm7jrd] {
    transition: background 0.2s ease, color 0.2s ease;
}

/* /Components/EditBooking.razor.rz.scp.css */
.booking[b-ap335fz9x9] {
    position: absolute;
    width: 100%;
}
    .booking-pending[b-ap335fz9x9] {
        background-color: lightblue; /* Light blue for pending bookings */
    }

    .booking-started[b-ap335fz9x9] {
        background-color: lightgreen; /* Light green for started bookings */
    }

    .booking-gap[b-ap335fz9x9] {
        background-color: darkblue; /* Dark blue for booking gaps */
        color: white; /* Optional: white text for better contrast */
    }

.booking-active[b-ap335fz9x9] {
    width: 15%;
    height: 100%; /* Ensure it takes full height */
    display: flex;
    align-items: start;
    justify-content: start;
}
    .booking-active-pending[b-ap335fz9x9] {
        background-color: darkblue; /* Dark blue for active pending bookings */
    }

    .booking-active-started[b-ap335fz9x9] {
        background-color: darkgreen; /* Dark green for active started bookings */
    }

    .booking-active-gap[b-ap335fz9x9] {
        background-color: darkblue; /* Dark blue for booking gaps */
        color: white; /* Optional: white text for better contrast */
    }

.booking-content[b-ap335fz9x9] {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
}
    .booking-content-end-of-slot[b-ap335fz9x9] {
        border-bottom: 0.5px solid black; /* Add black bottom border */
    }

.icon-container[b-ap335fz9x9] {
    display: flex;
    align-items: flex-start;
}

.double-booked-icon[b-ap335fz9x9] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
}

.hour[b-ap335fz9x9] {
    border: 1px solid #ddd; /* Solid border for hour */
    background: repeating-linear-gradient( 45deg, rgba(211, 211, 211, 0.5), rgba(211, 211, 211, 0.5) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px ); /* Checkered effect */
    height: 80px; /* Fixed height for hour */
    min-width: 200px; /* Set min width for hour */
    max-width: 400px; /* Set max width for hour */
    overflow: hidden; /* Prevent overflow */
    position: relative; /* Positioning context for absolute children */
    word-wrap: break-word; /* Allow text to wrap within the available width */
    white-space: normal; /* Allow text to wrap within the available height */
}

.timeslot[b-ap335fz9x9] {
    border: 1px solid #ddd; /* Solid border for timeslot */
    height: 80px; /* Fixed height for timeslot */
    width: 40px; /* Fixed width for timeslot */
    overflow: hidden; /* Prevent overflow */
}

/*Css for small screens*/
/* Bootstrap's default collapse behavior */
.collapse[b-ap335fz9x9] {
    overflow: hidden; /* Prevents unwanted content spill */
}

/* Small Screens: Ensure correct collapsing */
@media (max-width: 767px) {
    .navbar-toggler[b-ap335fz9x9] {
        margin-left: 0px !important; /* Fully left-align toggle */
        margin-top: 15px; /* Increased margin for better spacing */
        margin-bottom: 15px; /* Increased margin for better spacing */
        background-color: var(--primary-color) !important; /* Ensures visibility */
        padding: 10px 15px; /* Increased padding for a larger click area */
        color: white !important; /* Ensures all text inside the button is white */
        border-radius: 0; /* Removes rounded corners */
    }

    #booking-navigation.collapse[b-ap335fz9x9] {
        display: none !important; /* Properly hides */
    }

    #booking-navigation.show[b-ap335fz9x9] {
        display: block !important; /* Correctly expands */
        width: 100%;
    }

    #booking-navigation[b-ap335fz9x9] {
        position: static !important; /* Removes sticky behavior */
    }

    #edit-booking-content[b-ap335fz9x9], #edit-gap-content[b-ap335fz9x9] {
        margin-left: 10px !important; /* Adds 10px left margin */
    }

    #booking-content-summary[b-ap335fz9x9] {
        flex-direction: column !important; /* Stacks items vertically */
    }

    #patientContainer[b-ap335fz9x9],
    #consultationDetailsContainer[b-ap335fz9x9] {
        width: 100% !important; /* Ensures full width when stacked */
    }
}
/* /Components/FinancialStatement.razor.rz.scp.css */
.address[b-0oeqsjw1qc] {
    font-size: 12px;
    line-height: 1;
    color: #777;
}

.footer[b-0oeqsjw1qc] {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 210mm; /* Matches A4 width */
    position: fixed; /* Ensures footer stays at the bottom */
    bottom: 0 !important;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.logo[b-0oeqsjw1qc] {
    text-align: left;
    vertical-align: top;
}

/* Additional rules for ensuring no overlap */
main[b-0oeqsjw1qc] {
    margin-bottom: 30mm; /* Ensures no overlap with footer */
}

/* Force new page when necessary */
.page-break[b-0oeqsjw1qc] {
    page-break-before: always; /* Ensures content starts on a new page */
}

/* Rules for tables and rows */
table[b-0oeqsjw1qc] {
    page-break-inside: auto; /* Allows splitting within table */
}

tr[b-0oeqsjw1qc] {
    page-break-inside: avoid; /* Prevents splitting rows */
}

th[b-0oeqsjw1qc], td[b-0oeqsjw1qc] {
    page-break-inside: avoid; /* Avoids breaking table cells across pages */
}

@media print {
    .address[b-0oeqsjw1qc], .footer[b-0oeqsjw1qc], main[b-0oeqsjw1qc], .logo[b-0oeqsjw1qc] {
        -webkit-print-color-adjust: exact !important;
    }

    tr[b-0oeqsjw1qc] {
        -webkit-print-color-adjust: exact !important;
        background-color: inherit !important;
    }

        tr:nth-child(even)[b-0oeqsjw1qc] {
            background-color: #e9ecef !important;
        }

        tr:nth-child(odd)[b-0oeqsjw1qc] {
            background-color: white !important;
        }

    /* Footer should repeat in print output */
    footer[b-0oeqsjw1qc] {
        position: fixed; /* Ensure placement at the bottom */
        bottom: 0;
        width: 210mm; /* Matches A4 width */
        height: 20mm; /* Footer height */
    }

    /* Optional margin adjustments for print */
    main[b-0oeqsjw1qc] {
        margin-bottom: 30mm; /* Leave room for the footer */
    }
}
/* /Components/Invoice.razor.rz.scp.css */
.address[b-xb77axb3o0] {
    font-size: 12px;
    line-height: 1;
    color: #777;
}

.footer[b-xb77axb3o0] {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 210mm; /* Matches A4 width */
    position: fixed; /* Ensures footer stays at the bottom */
    bottom: 0 !important;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.logo[b-xb77axb3o0] {
    text-align: left;
    vertical-align: top;
}

/* Additional rules for ensuring no overlap */
main[b-xb77axb3o0] {
    margin-bottom: 30mm; /* Ensures no overlap with footer */
}

/* Force new page when necessary */
.page-break[b-xb77axb3o0] {
    page-break-before: always; /* Ensures content starts on a new page */
}

/* Rules for tables and rows */
table[b-xb77axb3o0] {
    page-break-inside: auto; /* Allows splitting within table */
}

tr[b-xb77axb3o0] {
    page-break-inside: avoid; /* Prevents splitting rows */
}

th[b-xb77axb3o0], td[b-xb77axb3o0] {
    page-break-inside: avoid; /* Avoids breaking table cells across pages */
}

@media print {
    .address[b-xb77axb3o0], .footer[b-xb77axb3o0], main[b-xb77axb3o0], .logo[b-xb77axb3o0] {
        -webkit-print-color-adjust: exact !important;
    }

    tr[b-xb77axb3o0] {
        -webkit-print-color-adjust: exact !important;
        background-color: inherit !important;
    }

        tr:nth-child(even)[b-xb77axb3o0] {
            background-color: #e9ecef !important;
        }

        tr:nth-child(odd)[b-xb77axb3o0] {
            background-color: white !important;
        }

    /* Footer should repeat in print output */
    footer[b-xb77axb3o0] {
        position: fixed; /* Ensure placement at the bottom */
        bottom: 0;
        width: 210mm; /* Matches A4 width */
        height: 20mm; /* Footer height */
    }

    /* Optional margin adjustments for print */
    main[b-xb77axb3o0] {
        margin-bottom: 30mm; /* Leave room for the footer */
    }
}
/* /Components/PatientNewBooking.razor.rz.scp.css */
.ui-datepicker .ui-datepicker-header[b-11p0fts06h] {
    background-color: var(--custom-background-color);
    color: black; /* Ensure text is readable */
}

.available-day a[b-11p0fts06h] {
    background-color: white !important;
    color: black; /* Ensure text is readable */
}

/* Style for selected day to match buttons */
.ui-datepicker .ui-datepicker-current-day a[b-11p0fts06h] {
    background-color: var(--primary-color) !important; /* Match button primary color */
    color: white !important; /* Match button text color */
}
/* selection box styling */
.selection-box[b-11p0fts06h] {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
    width: 250px; /* Sets a fixed width */
    height: 150px; /* Sets a fixed height */
    overflow: hidden; /* Prevents content overflow */
    text-align: center; /* Centers text horizontally */
}
    /* Hover effect for location boxes */
    .selection-box:hover[b-11p0fts06h] {
        background-color: #e6f7ff;
    }
    /* Hover colour remain on a selected item */
    .selection-box.selected[b-11p0fts06h] {
        background-color: #e6f7ff; /* Keeps the hover color */
        border-color: #007acc; /* Optional: Add a distinct border for clarity */
    }

/* Address line styling inside location boxes */
.location-address-line[b-11p0fts06h] {
    margin: 0 !important; /* Completely removes additional spacing between lines */
    line-height: 1 !important; /* Sets the line height to 1 for tightly packed lines */
    font-size: 0.9rem !important; /* Keeps text readable */
    color: #333 !important; /* Maintains a neutral color */
}

/* Header above timeslot list */
.timeslot-header[b-11p0fts06h] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
    margin-top: 12px;
    margin-bottom: 8px;
}

/* Container for each time-of-day section */
.timeslot-section[b-11p0fts06h] {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
}

/* Label for Morning / Afternoon / Evening */
.timeslot-section-name[b-11p0fts06h] {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #333;
}

/* Optional: style for slot buttons */
#slots button[b-11p0fts06h] {
    min-width: 100px;
    font-weight: 500;
}
/* /Components/PaymentReceipt.razor.rz.scp.css */
.address[b-r5tut2ahsz] {
    font-size: 12px;
    line-height: 1;
    color: #777;
}

.footer[b-r5tut2ahsz] {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 210mm; /* Matches A4 width */
    position: fixed; /* Ensures footer stays at the bottom */
    bottom: 0 !important;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.logo[b-r5tut2ahsz] {
    text-align: left;
    vertical-align: top;
}

/* Additional rules for ensuring no overlap */
main[b-r5tut2ahsz] {
    margin-bottom: 30mm; /* Ensures no overlap with footer */
}

/* Force new page when necessary */
.page-break[b-r5tut2ahsz] {
    page-break-before: always; /* Ensures content starts on a new page */
}

/* Rules for tables and rows */
table[b-r5tut2ahsz] {
    page-break-inside: auto; /* Allows splitting within table */
}

tr[b-r5tut2ahsz] {
    page-break-inside: avoid; /* Prevents splitting rows */
}

th[b-r5tut2ahsz], td[b-r5tut2ahsz] {
    page-break-inside: avoid; /* Avoids breaking table cells across pages */
}

@media print {
    .address[b-r5tut2ahsz], .footer[b-r5tut2ahsz], main[b-r5tut2ahsz], .logo[b-r5tut2ahsz] {
        -webkit-print-color-adjust: exact !important;
    }

    tr[b-r5tut2ahsz] {
        -webkit-print-color-adjust: exact !important;
        background-color: inherit !important;
    }

        tr:nth-child(even)[b-r5tut2ahsz] {
            background-color: #e9ecef !important;
        }

        tr:nth-child(odd)[b-r5tut2ahsz] {
            background-color: white !important;
        }

    /* Footer should repeat in print output */
    footer[b-r5tut2ahsz] {
        position: fixed; /* Ensure placement at the bottom */
        bottom: 0;
        width: 210mm; /* Matches A4 width */
        height: 20mm; /* Footer height */
    }

    /* Optional margin adjustments for print */
    main[b-r5tut2ahsz] {
        margin-bottom: 30mm; /* Leave room for the footer */
    }
}
/* /Components/PDFChartViewer.razor.rz.scp.css */
.pdf-host[b-jy9om6kts1] {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pdf-viewer-container[b-jy9om6kts1] {
    flex: 1;
    overflow: hidden;
}

.pdf-viewer-frame[b-jy9om6kts1] {
    width: 100%;
    height: 800px;
    border: none;
}
/* /Components/SearchOrNewPatient.razor.rz.scp.css */
.searching-indicator[b-usm91oejl9] {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .searching-indicator .dot[b-usm91oejl9] {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #6c757d;
        animation: pulse-b-usm91oejl9 1s infinite ease-in-out;
    }

@keyframes pulse-b-usm91oejl9 {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}
/* /Pages/Administration.razor.rz.scp.css */
#actionContainer[b-zq8spuwecu] {
    max-width: 100%;
}
/* /Pages/Clinic.razor.rz.scp.css */
/* Set text color for all tabs */
.container-fluid .nav-tabs .nav-item .nav-link[b-y01wjwqqno] {
    color: black !important; /* Set text color to black for inactive tabs */
}

    /* Custom styles for the active tab */
    .container-fluid .nav-tabs .nav-item .nav-link.active[b-y01wjwqqno] {
        background-color: var(--tab-active-background-color) !important; /* Desired background color for selected tab */
        color: black !important; /* Ensure the active tab also has black text */
        border-color: transparent !important; /* Removing border color */
    }
/* /Pages/CreateHistory.razor.rz.scp.css */
/* Inactive tabs */
.container-fluid .nav-tabs .nav-item .nav-link[b-jhx0gn01sx] {
    color: black !important;
}

    /* Active tab */
    .container-fluid .nav-tabs .nav-item .nav-link.active[b-jhx0gn01sx] {
        background-color: var(--tab-active-background-color) !important;
        color: black !important;
        border-color: transparent !important;
    }
/* /Pages/Diary.razor.rz.scp.css */
.grid-container[b-67i2w4aq4r] {
    display: grid;
    grid-template-columns: 50px repeat(7, 1fr);
    gap: 0.25px;
}

    .grid-container > div[b-67i2w4aq4r] {
        border: 1px solid #dee2e6;
        padding: 0.5rem;
        position: relative;
    }

.timeslot[b-67i2w4aq4r] {
    width: 50px;
    height: 80px; /* Fixed height for timeslot */
    overflow: hidden; /* Prevent overflow */
}

.hour[b-67i2w4aq4r] {
    height: 80px; /* Fixed height for hour */
    overflow: hidden; /* Prevent overflow */
    position: relative; /* Positioning context for absolute children */
    word-wrap: break-word; /* Allow text to wrap within the available width */
    white-space: normal; /* Allow text to wrap within the available height */
}

.hour-working[b-67i2w4aq4r] {
    background: repeating-linear-gradient( 45deg, rgba(211, 211, 211, 0.5), rgba(211, 211, 211, 0.5) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px ); /* Checkered effect */
}

.day-header[b-67i2w4aq4r],
.time-header[b-67i2w4aq4r] {
    min-height: auto; /* Allow auto height for day headers */
    white-space: nowrap; /* Prevent text wrap in headers */
}

.booking[b-67i2w4aq4r] {
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.booking-pending[b-67i2w4aq4r] {
    background-color: lightblue; /* Light blue for pending bookings */
}

.booking-started[b-67i2w4aq4r] {
    background-color: lightgreen; /* Light green for started bookings */
}

.booking-gap[b-67i2w4aq4r] {
    background-color: darkblue; /* Dark blue for booking gaps */
    color: white; /* Optional: white text for better contrast */
}

.booking-content[b-67i2w4aq4r] {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    padding-bottom: 2px; /* Add some padding between bookings */
    position: relative;
}

.booking-content-end-of-slot[b-67i2w4aq4r] {
    border-bottom: 2px solid #cccccc; /* Use a lighter border color */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Add a subtle shadow effect */
}

.calendar-trigger-container[b-67i2w4aq4r] {
    position: relative;
    display: inline-block;
}

.datepicker-popup[b-67i2w4aq4r] {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    z-index: 2000;
    background: var(--custom-background-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.datepicker-close[b-67i2w4aq4r] {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2100;
}

#schedule-container[b-67i2w4aq4r] {
    max-width: 100%;
}

/* /Pages/Patient/Home.razor.rz.scp.css */
/* Inactive tabs */
.container-fluid .nav-tabs .nav-item .nav-link[b-eu3itzpqwx] {
    color: black !important;
}

    /* Active tab */
    .container-fluid .nav-tabs .nav-item .nav-link.active[b-eu3itzpqwx] {
        background-color: var(--tab-active-background-color) !important;
        color: black !important;
        border-color: transparent !important;
    }

/* Constrain the card itself */
.mfa-setup-outer[b-eu3itzpqwx] {
    width: 100%;
    max-width: 420px; /* same as login */
}

/* Constrain the content inside the card */
.mfa-setup-inner[b-eu3itzpqwx] {
    width: 100%;
    max-width: 360px; /* prevents full-width stretching */
}

.nav-link.disabled[b-eu3itzpqwx] {
    pointer-events: none;
    opacity: 0.5;
}

/* /Pages/Patients.razor.rz.scp.css */
/* Inactive tabs */
.container-fluid .nav-tabs .nav-item .nav-link[b-kr3bwbud3k] {
    color: black !important;
}

    /* Active tab */
    .container-fluid .nav-tabs .nav-item .nav-link.active[b-kr3bwbud3k] {
        background-color: var(--tab-active-background-color) !important;
        color: black !important;
        border-color: transparent !important;
    }
/* /Pages/ReconcilePayments.razor.rz.scp.css */
/* Inactive tabs */
.container-fluid .nav-tabs .nav-item .nav-link[b-6w5x75htj5] {
    color: black !important;
}

    /* Active tab */
    .container-fluid .nav-tabs .nav-item .nav-link.active[b-6w5x75htj5] {
        background-color: var(--tab-active-background-color) !important;
        color: black !important;
        border-color: transparent !important;
    }
