@font-face {
    font-family: 'Baloo2-Bold';
    src: url('../font/Baloo2/Baloo2-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito-Italic-VariableFont_wght';
    src: url('../font/Nunito/Variable Font/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Nunito-VariableFont_wght';
    src: url('../font/Nunito/Variable Font/Nunito-VariableFont_wght.ttf') format('truetype');
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light grey background ring */
    border-top: 5px solid #00b4ad; /* Teal colored spinning part */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

html {
    font-size: 14px;
    overflow: auto;
    position: relative;
    height: 100%;
}

@media (min-width: 767.98px) {
    html {
        font-size: 16px;
    }
}

.mobilelayout {
    display: none;
}

.desktoplayout {
    display: block;
}

@media (max-width: 991.98px) {
    .mobilelayout {
        display: block;
    }

    .desktoplayout {
        display: none;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    outline: 0;
    border-color: #C6C6C6;
}

body {
    font-family: 'Nunito-VariableFont_wght', 'Varela Round', sans-serif;
    height: 100%;
}

.background-image {
    background-position: center 350px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.font-baloo {
    font-family: 'Baloo2-Bold', 'Varela Round', sans-serif;
}

.font-color-primary {
    color: #02AFAD !important;
}

.background-color-primary {
    background-color: #02AFAD !important;
}

.font-color-secondary {
    color: #fdd039 !important;
}

.background-color-secondary {
    background-color: #fdd039 !important;
}

.errorMsg {
    color: #842029;
    background: #f8d7da;
    padding: 0;
}

.errorMsg:not(:empty) {
    padding: .75rem;
}

.successMsg {
    color: #0f5132;
    background-color: #d1e7dd;
    padding: 0;
}

.successMsg:not(:empty) {
    padding: .75rem;
}

.top-right-icon {
    font-size: 22px;
    margin-right: 15px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.footer {
    white-space: nowrap;
    line-height: 60px;
}

.label-padding {
    padding: .65rem .75rem;
}

.bigbtn {
    background-color: #E7464E;
    color: transparent;
    border-color: #E7464E;
    color: #FFFFFF;
    box-shadow: none !important;
    outline: none !important;
    font-weight: 700;
    font-size: 20px;
    padding: .5rem;
    border-radius: 30px;
    border-style: solid;
    border-width: 2px;
}

    .bigbtn:hover, .bigbtn:focus, .bigbtn:disabled {
        color: #E7464E;
        background-color: transparent;
        border: 2px solid #E7464E !important;
    }

.selectnone {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.nav-title {
    color: #e7464e;
    font-size: 2.6rem;
    margin-top: 0.1rem;
}

.back-button {
    color: #e7464e !important;
    font-size: 2.1rem;
    margin-right: 0.3rem;
}

.top-button {
    color: #e7464e !important;
    font-size: 2.8rem !important;
    position: fixed;
    bottom: 60px;
    right: 15px;
    z-index: 9999;
}

.nav-label {
    border-radius: 15px 50px;
    padding: 6px 60px;
    display: inline-block;
    text-align: center;
    border: 1px solid #e7464e;
    background-color: #e7464e;
    color: white;
}

.merchant-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 15rem);
    justify-content: center;
    margin-block: 1rem;
    gap: 1.5rem;
}

.merchant-card {
    display: flex;
    flex-direction: column;
    width: 15rem;
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.6em;
    background: white;
    height: min-content;
}

.card_header {
    height: 9.6rem;
    display: flex;
    overflow: hidden;
}

    .card_header img {
        width: 100%;
        display: block;
        object-fit: contain;
        height: 100%;
    }

.card_body {
    padding: 1rem;
    border-top: 1px solid #fdd039;
}

.card_body_2 {
    padding: 0rem 1rem 1rem 1rem;
}

    .card_body h6 {
        margin-bottom: 0;
        font-size: 0.9rem;
        color: black;
    }

#merchant-search-bar {
    margin-right: 1rem;
    width: 35%;
    margin-top: 4px;
    float: right !important;
}

@media (max-width: 575.98px) {
    #merchant-search-bar {
        margin-right: 1rem;
        width: 95%;
        float: none !important;
        margin-left: auto;
        margin-right: auto;
    }
}

.merchant-request-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 25rem);
    justify-content: center;
    margin-block: 1rem;
    gap: 1.5rem;
}

.merchant-request-card {
    display: flex;
    flex-direction: column;
    width: 25rem;
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.6em;
    background: white;
    height: min-content;
}

.btnNoStyle {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.width-20 {
    width: 20%;
}

.width-30 {
    width: 30%;
}

.notification-label {
    font-size: 0.9rem;
    color: grey;
}

.google-map-location {
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.15);
    height: 400px;
}

.newspromo-card {
    display: flex;
    flex-direction: row;
    width: 25rem;
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.6em;
    background: white;
    height: min-content;
}

.news_header {
    height: 12rem;
    display: flex;
    overflow: hidden;
    width: 40%;
}

    .news_header img {
        width: 100%;
        display: block;
        object-fit: contain;
        height: 100%;
    }

.news_body {
    padding: 1rem;
    border-left: 1px solid #fdd039;
    width: 60%;
}

    .news_body h6 {
        margin-bottom: 0;
        font-size: 1.2rem;
        color: black;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        white-space: pre-line;
    }

    .news_body p {
        margin-top: 1rem;
        margin-bottom: 0;
        font-size: 0.8rem;
        color: grey;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        white-space: pre-line;
    }

.shadow-box {
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.active-btn {
    background-color: #E7464E;
    border-color: #E7464E;
    color: #FFFFFF !important;
}

.history-select {
    border: 1px solid #E7464E;
}

    .history-select:hover {
        color: #E7464E !important;
    }

    .history-select.active-btn:hover, .history-select.active-btn:active, .history-select.active-btn:focus {
        color: white !important;
        border: 1px solid #E7464E !important;
        box-shadow: none !important;
    }

    .history-select:focus {
        border: 1px solid #E7464E !important;
        box-shadow: none !important;
    }

.active-option {
    background-color: #fdd039;
    border-color: #fdd039;
    color: white !important;
}

.history-option {
    border: 1px solid #fdd039;
    color: black;
}

    .history-option:hover {
        color: black !important;
    }

    .history-option.active-option:hover, .history-option.active-option:active, .history-option.active-option:focus {
        color: white !important;
        border: 1px solid #fdd039 !important;
        box-shadow: none !important;
    }

    .history-option:focus {
        border: 1px solid #fdd039 !important;
        box-shadow: none !important;
    }

.popbox {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .popbox.show {
        opacity: 1;
        transform: scale(1);
    }

.voucher-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 35rem);
    justify-content: space-around;
    margin-block: 1rem;
    gap: 2.5rem;
}

.voucher-card {
    display: flex;
    flex-direction: row;
    width: 35rem;
    overflow: hidden;
    box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.6em;
    background: white;
    height: min-content;
}

.voucher_header {
    height: 10rem;
    display: flex;
    overflow: hidden;
    width: 45%;
    position: relative;
}

.voucher_body {
    padding: 1rem;
    border-left: 1px solid #fdd039;
    width: 55%;
}

.voucher_header img {
    width: 100%;
    display: block;
    height: 100%;
}

.voucher_body h6 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.voucher_body p {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: grey;
}

.voucher-count {
    padding: 0.4rem;
    position: absolute;
    top: 0;
    right: 10px;
    color: white;
    background-color: #4eba5b;
}

@media (max-width: 767.98px) {
    .voucher-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, 25rem);
        justify-content: center;
        margin-block: 1rem;
        gap: 1.5rem;
    }

    .voucher-card {
        display: flex;
        flex-direction: row;
        width: 25rem;
        overflow: hidden;
        box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
        border-radius: 0.6em;
        background: white;
        height: min-content;
    }

    .voucher_header {
        height: 7rem;
        display: flex;
        overflow: hidden;
        width: 45%;
        position: relative;
    }

    .voucher_body {
        padding: 0.65rem 1rem;
    }

        .voucher_body p {
            margin-top: 0.5rem;
        }

        .voucher_body h6 {
            font-size: 1rem;
            -webkit-line-clamp: 2;
        }
}

.fade-in {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swipe-container {
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    padding: 10px;
}

.swipe-track {
    background-color: #eee;
    border-radius: 50px;
    position: relative;
    height: 50px;
    overflow: hidden;
}

.swipe-text {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    color: #888;
    pointer-events: none;
    z-index: 1;
}

.swipe-handle {
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
    user-select: none;
    transition: background-color 0.3s;
}

.voucherpoint {
    margin-bottom: 0.9rem !important;
    font-size: 0.9rem !important;
    color: black !important;
}

.oldpoint {
    font-size: 0.8rem !important;
    color: grey !important;
}

@media (max-width: 767.98px) {
    .voucherpoint {
        margin-bottom: 0.45rem !important;
    }
}

.qr-btn {
    box-shadow: 0 .1rem 1rem rgba(231, 70, 78, 0.2);
    border-radius: 0.3em;
    border: 1px solid rgba(231, 70, 78, 0.2);
}

    .qr-btn:focus, .qr-btn:active:focus {
        box-shadow: inset 0 0 0 1px rgba(231, 70, 78, 0.2);
        outline: 0;
        border: 1px solid rgba(231, 70, 78, 0.2);
    }

@media (max-width: 575.98px) {
    .qr-btn {
        width: 45%;
    }
}

.scanqr {
    width: 400px;
}

@media (max-width: 575.98px) {
    .scanqr {
        width: 300px;
    }
}

.iti--separate-dial-code
{
    width: 100% !important;
}

.loginswap:hover {
    color: grey;
}

@media (max-width: 575.98px) {
    #bubbleimg {
        left: -75px !important;
        transform: scale(0.65);
    }
}

@media (max-width: 575.98px) {
    .merchant-container-mobile {
        display: flex;
        overflow-y: hidden;
        justify-content: start;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 1rem;
        margin-block: 0;
    }

        .merchant-container-mobile::-webkit-scrollbar {
            display: none;
        }

    .owncard-container-mobile {
        display: flex;
        overflow-y: hidden;
        justify-content: start;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 1rem;
        margin-block: 0;
        margin-top: 20vh;
        scroll-snap-type: x mandatory;
        transform: scale(1.25);
        margin-bottom: 2rem;
    }

    .owncard-child {
        flex: 0 0 calc(100% + 2rem);
        margin: 0 auto;
        scroll-snap-align: start;
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .parachute {
        display: none;
    }
}

#focusedCardIndex {
    display: none;
}

@media (max-width: 575.98px) {
    #focusedCardIndex {
        display: block;
    }
}

.carddetails {
    grid-template-columns: repeat(auto-fill, 8rem);
}

.qrsize {
    width: 30%;
}

@media (max-width: 575.98px) {
    .carddetails {
        grid-template-columns: repeat(auto-fill, 7rem);
    }

    .merchant-container-mobile-all {
        grid-template-columns: repeat(auto-fill, 10rem);
    }

    .merchant-card-mobile-all {
        width: 10rem;
        border-radius: 0.4em;
    }

    .card_header-mobile-all {
        height: 6.4rem;
    }

    .qrsize {
        width: 75%;
    }
}

.highlight-container {
    display: flex;
    overflow-x: auto !important;
    overflow-y: hidden;
    justify-content: start;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

    .highlight-container.dragging {
        cursor: grabbing;
        scroll-snap-type: none;
        scroll-behavior: auto;
    }

.highlight-child {
    flex: 0 0 100%;
    margin: 0 auto;
    scroll-snap-align: start;
    justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
    .highlight-container {
        scroll-snap-type: x proximity;
    }

        .highlight-container.custom-snap {
            scroll-snap-type: none;
        }
}

.width-flex {
    width: 50%;
}

@media (max-width: 500px) {
    .width-flex {
        width: 75%;
    }
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlight-title {
    width: fit-content;
    border-radius: 0px 0px 20px 0px;
    background-color: rgba(217, 217, 217, 0.6);
}

.headerContainer {
    display: unset;
}

.mobilefootercontainer {
    display: none;
}

.footercontainer {
    display: unset;
}

.searchBar {
    display: unset;
}

.grey-container {
    background-color: #F3F3F3;
}

@media (max-width: 575.98px) {
    .headerContainer {
        display: none;
    }

    .mobilefootercontainer {
        display: unset;
    }

    .footercontainer {
        display: none;
    }

    #loadingOverlay {
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .searchBar {
        display: none !important;
    }

    .grey-container {
        background-color: transparent;
    }
}

/*.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
}

.nav-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .nav-item::before {
        content: '';
        position: absolute;
        top: -10px;
        width: 0;
        height: 3px;
        background: #667eea;
        border-radius: 3px;
        transition: width 0.3s ease;
    }

    .nav-item.active::before {
        width: 30px;
    }

.icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
}

.nav-item.active .icon-container {
    background: #667eea;
    transform: translateY(-5px);
}

.nav-icon {
    font-size: 1.3rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.nav-item.active .nav-icon {
    color: white;
}

.nav-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

.nav-item.active .nav-text {
    color: #667eea;
}

.nav-indicator {
    position: absolute;
    top: -8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4757;
    opacity: 0;
}

.nav-item.has-notification .nav-indicator {
    opacity: 1;
}*/

/*_Layout.cshml*/
/* Header */
/*---------------------------------------------------------------------------------------*/
.btn-outline-teal {
    color: #00a896;
    border: 2px solid #00a896;
    transition: all 0.3s ease;
}

    .btn-outline-teal:hover {
        background-color: #00a896;
        color: white;
    }

/* Nav Item Spacing & Hover */
.navbar-nav .nav-link {
    color: #444 !important;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #00a896 !important;
}

/* Ensure the second line stays below on desktop */
@media (min-width: 992px) {
    .collapse.navbar-collapse {
        display: block !important;
    }
}

/* Utility spacing */
.gap-4 {
    gap: 1.5rem !important;
}

.text-secondary i {
    color: #666;
}

.navbar-nav .nav-link {
    font-family: 'Nunito-Variable', sans-serif;
    font-weight: 600; /* This is the "Medium" setting */
    font-size: 1rem;
    color: #333;
    transition: 0.3s;
}
/*---------------------------------------------------------------------------------------*/


/*_Layout.cshml*/
/* Footer */
/*---------------------------------------------------------------------------------------*/
/* Footer Link Styling */
.footer-link {
    font-family: 'Nunito-Variable', sans-serif;
    font-weight: 600; /* Medium weight */
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #00a896; /* Teal accent */
}

/* Circular Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f8f9fa;
    border-color: #00a896;
    color: #00a896;
}

.social-icon i {
    font-size: 0.9rem;
}

/* Ensure footer sticks to bottom if page is short */

footer {
    margin-top: auto;
}
/*---------------------------------------------------------------------------------------*/

/*Home.cshml*/
/*---------------------------------------------------------------------------------------*/
/* Custom Palette from Screenshot */
.btn-teal {
    background-color: #00a896;
    transition: background-color 0.3s ease;
}

    .btn-teal:hover, .btn-teal:focus {
        background-color: #008f80;
        color: white;
    }

/* Hide default Bootstrap arrow to use FontAwesome chevron instead */
.custom-caret-off::after {
    display: none !important;
}

/* Teal Button Branding */
.btn-teal {
    background-color: #00b0a3; /* Matched to the submit button teal */
    border: none;
    transition: all 0.3s ease;
}

    .btn-teal:hover, .btn-teal:focus {
        background-color: #00968b;
        color: white;
    }

/* Dropdown Menu Pattern */
.dropdown-menu {
    min-width: 220px;
}

.dropdown-item {
    font-weight: 500;
    color: #333;
    padding-left: 1.5rem;
    transition: background-color 0.2s;
}

    /* Light teal highlight for active/selected location */
    .dropdown-item:hover, .active-location {
        background-color: #c9f2ef !important;
        color: #333 !important;
    }

/* Hide default Bootstrap arrow */
.hide-caret::after {
    display: none;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    #navRow .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown.ms-auto {
        margin-left: 0 !important;
        width: 100%;
    }

    #locationDropdown {
        width: 100%;
    }
}

.text-pink {
    color: #ff3366;
}

.bg-purple {
    background-color: #8e44ad;
    color: white;
}

.text-purple {
    color: #8e44ad;
}

/* Font Styles */
.font-serif {
    font-family: 'Playfair Display', serif; /* Use a nice serif font if available */
}

/* Card Hover Animation */
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    }

/* Icon Link Animation */
.icon-hover:hover i {
    transform: scale(1.15);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Text Shadow for overlay text visibility */
.shadow-text {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Pagination Dots */
.rounded-circle {
    width: 8px;
    height: 8px;
    display: inline-block;
}

.bg-purple {
    background-color: #8e44ad !important;
}

.text-pink {
    color: #ff3366 !important;
}

/* Simple hover effect for icons */
.card-body a:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Ensure the banner image doesn't lose shape */
.hero-wrapper img {
    object-position: center;
}

/* Custom Corner Radius (if rounded-4 isn't enough) */
.rounded-4 {
    border-radius: 20px !important;
}

/* Modern Soft Shadow */
.custom-card-shadow {
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* Hover Effect: The card lifts slightly when hovered */
    .custom-card-shadow:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    }

/* Ensure the header and body don't have borders that ruin the look */
.card-header, .card-body {
    border: none !important;
}

/*---------------------------------------------------------------------------------------*/
/*MyQRPage.cshml*/
/*---------------------------------------------------------------------------------------*/
:root {
    --eco-teal: #00a896;
    --eco-bg-gray: #f4f6f8;
}

.bg-light-gray {
    background-color: var(--eco-bg-gray);
}

.text-teal {
    color: var(--eco-teal);
}

/* ------------------------------------------- */
/* The Toggle Switch Logic                     */
/* ------------------------------------------- */
.qr-toggle-container {
    background-color: #00a896; /* Your brand teal color */
    border: none;
}

/* Base style for the buttons inside the toggle */
.qr-tab-btn {
    border: none;
    background: transparent;
    transition: all 0.2s ease-in-out;
    padding: 8px 0;
    font-size: 0.95rem;
}

/* Active state: White button with dark text */
.qr-tab-btn.active {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Inactive state: Transparent with white text */
.qr-tab-btn:not(.active) {
    color: #ffffff !important;
}

#reader {
    background: #000;
    border: 2px solid #00a896; /* Teal border matches your brand */
}

/* Ensure the camera video fills the rounded container */
#reader video {
    border-radius: 12px;
}