@import '_content/UIComponents/UIComponents.9xedpqg9mu.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Base layout structure */
html[b-shnms2mcqn], body[b-shnms2mcqn] {
    height: 100%;
    overflow-x: hidden;
}

.page[b-shnms2mcqn] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Add padding-top to account for fixed navbar height */
    padding-top: 56px;
}

main[b-shnms2mcqn] {
    flex: 1;
    overflow-y: auto;
}

.sidebar[b-shnms2mcqn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-shnms2mcqn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-shnms2mcqn]  a, .top-row[b-shnms2mcqn]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-shnms2mcqn]  a:hover, .top-row[b-shnms2mcqn]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-shnms2mcqn]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 767.98px) {
    .top-row[b-shnms2mcqn] {
        justify-content: space-between;
    }

    .top-row[b-shnms2mcqn]  a, .top-row[b-shnms2mcqn]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .page[b-shnms2mcqn] {
        flex-direction: row;
        /* Adjust padding for desktop navbar if needed */
        padding-top: 56px;
    }

    .sidebar[b-shnms2mcqn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-shnms2mcqn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-shnms2mcqn]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-shnms2mcqn], article[b-shnms2mcqn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-shnms2mcqn] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-shnms2mcqn] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ikm2x4huvl],
.components-reconnect-repeated-attempt-visible[b-ikm2x4huvl],
.components-reconnect-failed-visible[b-ikm2x4huvl],
.components-pause-visible[b-ikm2x4huvl],
.components-resume-failed-visible[b-ikm2x4huvl],
.components-rejoining-animation[b-ikm2x4huvl] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-retrying[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-failed[b-ikm2x4huvl],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ikm2x4huvl] {
    display: block;
}


#components-reconnect-modal[b-ikm2x4huvl] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ikm2x4huvl 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ikm2x4huvl 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ikm2x4huvl 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ikm2x4huvl]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ikm2x4huvl 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ikm2x4huvl {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ikm2x4huvl {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ikm2x4huvl {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ikm2x4huvl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ikm2x4huvl] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ikm2x4huvl] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ikm2x4huvl] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ikm2x4huvl] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ikm2x4huvl] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ikm2x4huvl] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ikm2x4huvl 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ikm2x4huvl] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ikm2x4huvl {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/TopMenu.razor.rz.scp.css */
/* Fixed navbar at top */
nav.navbar[b-j3563cmdy5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

/* Navbar brand image sizing */
.navbar-brand-img[b-j3563cmdy5] {
    height: 40px;
    width: auto;
}

/* Full-screen offcanvas for mobile menu */
.mobile-menu-offcanvas[b-j3563cmdy5] {
    width: 100vw !important;
    max-width: 100vw !important;
    background-color: #033A3F !important;
    color: #fff;
}

.mobile-menu-offcanvas .offcanvas-header[b-j3563cmdy5] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.mobile-menu-offcanvas .offcanvas-title[b-j3563cmdy5] {
    color: #fff;
    font-weight: 600;
}

.mobile-menu-offcanvas .offcanvas-body[b-j3563cmdy5] {
    padding: 1.5rem;
}

/* User info section in offcanvas */
.mobile-menu-user-info[b-j3563cmdy5] {
    text-align: center;
    padding: 1rem 0;
}

.mobile-menu-user-icon[b-j3563cmdy5] {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-user-name[b-j3563cmdy5] {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    word-break: break-word;
}

/* Navigation links in offcanvas */
.mobile-menu-nav[b-j3563cmdy5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link[b-j3563cmdy5] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.15s ease-in-out;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
}

.mobile-menu-link:hover[b-j3563cmdy5] {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.mobile-menu-link:focus[b-j3563cmdy5] {
    outline: none;
}

.mobile-menu-link:focus-visible[b-j3563cmdy5] {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Actions section at bottom of offcanvas */
.mobile-menu-actions[b-j3563cmdy5] {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-actions .btn-outline-light[b-j3563cmdy5] {
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-actions .btn-outline-light:hover[b-j3563cmdy5] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Ensure hamburger is properly styled */
.navbar-toggler[b-j3563cmdy5] {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus[b-j3563cmdy5] {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Desktop nav link styling */
@media (min-width: 768px) {
    .navbar-nav .nav-link[b-j3563cmdy5] {
        padding: 0.5rem 1rem;
    }

    .navbar-nav .nav-link.active[b-j3563cmdy5] {
        font-weight: 600;
    }
}
/* /Components/Pages/Coupons.razor.rz.scp.css */
/* Coupons page container - ensures proper layout with bottom nav */
.coupons-page[b-43vi21q4cy] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Add bottom padding on mobile to prevent content from being hidden behind bottom nav */
@media (max-width: 767.98px) {
    .coupons-page[b-43vi21q4cy] {
        padding-bottom: 72px;
    }
}

/* Mobile bottom filter navigation - fixed at bottom */
.bottom-filter-nav[b-43vi21q4cy] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1030;
    /* Safe area support for devices with home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Filter button base styles */
.bottom-filter-btn[b-43vi21q4cy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: #6c757d;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    min-width: 64px;
    padding: 8px 4px;
    cursor: pointer;
    position: relative;
}

.bottom-filter-btn:hover[b-43vi21q4cy] {
    color: #033A3F;
    background-color: rgba(3, 58, 63, 0.05);
}

.bottom-filter-btn:focus[b-43vi21q4cy] {
    outline: none;
}

.bottom-filter-btn:focus-visible[b-43vi21q4cy] {
    outline: 2px solid #033A3F;
    outline-offset: -2px;
}

/* Active state for selected filter */
.bottom-filter-btn.active[b-43vi21q4cy] {
    color: #033A3F;
    background-color: rgba(3, 58, 63, 0.1);
}

.bottom-filter-btn.active svg[b-43vi21q4cy] {
    color: #033A3F;
}

.bottom-filter-btn.active span[b-43vi21q4cy] {
    font-weight: 600;
}

/* Icon styling */
.bottom-filter-btn svg[b-43vi21q4cy] {
    margin-bottom: 2px;
    color: inherit;
}

/* Label text */
.bottom-filter-btn span[b-43vi21q4cy] {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: inherit;
}

/* Subtle separator between buttons */
.bottom-filter-btn:not(:last-child)[b-43vi21q4cy]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background-color: #e9ecef;
}
