/* _content/Gift.App/Shared/MainLayout.razor.rz.scp.css */
/* Establishes the main two-column grid layout for the entire page */
.page[b-i38z5u9v84] {
    display: grid;
    /* Defines a 250px fixed-width sidebar (matches NavMenu) and a flexible main content area */
    grid-template-columns: 250px 1fr;
    height: 100vh;
    /* Ensures the layout fills the full height of the browser window */
    transition: grid-template-columns 0.3s ease;
}

/* Sidebar collapsed state */
.page.sidebar-collapsed[b-i38z5u9v84] {
    grid-template-columns: 70px 1fr;
}

/* Override for full-width layout (Member View) */
.page.full-width[b-i38z5u9v84] {
    grid-template-columns: 1fr;
}

/* The main content area where your pages will be rendered */
main[b-i38z5u9v84] {
    background-color: #f8f9fa;
    /* A light gray background to contrast with content cards */
    overflow-y: auto;
    /* Adds a scrollbar ONLY to the main area if content is too long */
}

/* Adds some spacing at the top of the content within the main area */
.content[b-i38z5u9v84] {
    padding-top: 1.5rem;
}

/* Responsive styles for tablets and mobile devices */
@media (max-width: 767.98px) {
    .page[b-i38z5u9v84] {
        /* On smaller screens, switch to a single-column layout */
        grid-template-columns: 1fr;
        height: auto;
        /* Allow the page height to grow with content */
    }

    .sidebar[b-i38z5u9v84] {
        height: auto;
        /* Note: For a true mobile experience, you would typically hide the sidebar
           and show it with a "hamburger" button, but this provides a simple stacking layout. */
    }

    main[b-i38z5u9v84] {
        height: auto;
    }

    .content[b-i38z5u9v84] {
        padding-top: 0.5rem;
    }
}
/* _content/Gift.App/Shared/NavMenu.razor.rz.scp.css */
/* The main container for the sidebar, using flexbox to stack its sections vertically */
.sidebar-container[b-n19g2xop68] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #e9ecef;
}

/* Styles for the "Back Office" brand/logo area at the top */
.sidebar-brand[b-n19g2xop68] {
    padding: 1.15rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.sidebar-brand a[b-n19g2xop68] {
    color: #212529;
    text-decoration: none;
}

/* This is the middle section containing the navigation links */
.nav-scrollable[b-n19g2xop68] {
    flex-grow: 1;
    overflow-y: auto;
}

/* A wrapper for the list of links */
.nav[b-n19g2xop68] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Individual menu item container */
.nav-item[b-n19g2xop68] {
    padding: 0 0.75rem;
}

/* Base style for all NavLink components */
.nav-item[b-n19g2xop68]  a {
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 0.75rem;
    border-radius: 6px;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

/* Style for the currently active NavLink */
.nav-item[b-n19g2xop68]  a.active {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.08);
    font-weight: 600;
}

.nav-item[b-n19g2xop68]  a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background-color: var(--bs-primary);
    border-radius: 2px;
}

/* Hover effect for all navigation links */
.nav-item[b-n19g2xop68]  a:hover {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Styles for the footer area at the bottom containing the UserStatus component */
.sidebar-footer[b-n19g2xop68] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}

.sidebar-footer[b-n19g2xop68]  .btn {
    width: 100%;
    margin-top: 0.75rem;
}

/* Mobile-first: Sidebar hidden */
.sidebar-container.collapse[b-n19g2xop68] {
    display: none;
}

/* Show when toggle is open */
.sidebar-container.show[b-n19g2xop68] {
    display: flex;
}

/* ===== HAMBURGER TOGGLE BUTTON ===== */
/* === FLOATING === */
/* .menu-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1050;
    background: white;
    border-radius: 4px;
    padding: 0.5rem;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    display: flex;
} */

/* === INLINE === */
.menu-toggle[b-n19g2xop68] {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1050;
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Hamburger icon button */
.navbar-toggler[b-n19g2xop68] {
    background-color: transparent;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.navbar-toggler-icon[b-n19g2xop68],
.navbar-toggler-icon[b-n19g2xop68]::before,
.navbar-toggler-icon[b-n19g2xop68]::after {
    background-color: #000 !important;
}

.navbar-toggler-icon[b-n19g2xop68] {
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon[b-n19g2xop68]::before,
.navbar-toggler-icon[b-n19g2xop68]::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    left: 0;
}

.navbar-toggler-icon[b-n19g2xop68]::before {
    top: -8px;
}

.navbar-toggler-icon[b-n19g2xop68]::after {
    top: 8px;
}

/* ===== DESKTOP OVERRIDES ===== */
@media (min-width: 768px) {
    .sidebar-container[b-n19g2xop68] {
        display: flex !important;
        width: 250px;
        transition: width 0.3s ease;
    }

    .sidebar-container.desktop-collapsed[b-n19g2xop68] {
        width: 70px;
    }

    .sidebar-container.desktop-collapsed .nav-text[b-n19g2xop68] {
        display: none;
    }

    .sidebar-container.desktop-collapsed[b-n19g2xop68]  .user-name {
        display: none;
    }

    .sidebar-container.desktop-collapsed .nav-link[b-n19g2xop68] {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .sidebar-container.desktop-collapsed .bi[b-n19g2xop68] {
        margin-right: 0 !important;
    }

    .sidebar-container.desktop-collapsed[b-n19g2xop68]  .d-flex {
        align-items: center !important;
        text-align: center !important;
    }

    .sidebar-container.desktop-collapsed[b-n19g2xop68]  .text-nowrap {
        margin-right: 0 !important;
    }

    .navbar-toggler[b-n19g2xop68] {
        display: none;
    }

    .menu-toggle[b-n19g2xop68] {
        display: none;
    }
}
/* _content/Gift.App/Shared/NavMenuDesktop.razor.rz.scp.css */
/* The main container for the sidebar */
.sidebar-container[b-n2iu3x8c5g] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffff;
    width: 100%;
    transition: width 0.3s ease;
}

/* Collapsed state */


.sidebar-container.desktop-collapsed .nav-text[b-n2iu3x8c5g] {
    display: none;
}

.sidebar-container.desktop-collapsed[b-n2iu3x8c5g]  .user-name {
    display: none;
}

.sidebar-container.desktop-collapsed .nav-link[b-n2iu3x8c5g] {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-container.desktop-collapsed .bi[b-n2iu3x8c5g] {
    margin-right: 0 !important;
}

.sidebar-container.desktop-collapsed[b-n2iu3x8c5g]  .d-flex {
    align-items: center !important;
    text-align: center !important;
}

.sidebar-container.desktop-collapsed[b-n2iu3x8c5g]  .text-nowrap {
    margin-right: 0 !important;
}

/* Navigation List area */
.nav-scrollable[b-n2iu3x8c5g] {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll when collapsing */
}

/* A wrapper for the list of links */
.nav[b-n2iu3x8c5g] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Individual menu item container */
.nav-item[b-n2iu3x8c5g] {
    padding: 0 0.75rem;
}

/* Base style for all NavLink components */
.nav-item[b-n2iu3x8c5g]  a {
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 0.75rem;
    border-radius: 6px;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    white-space: nowrap;
    /* Keep text on one line */
}

/* Style for the currently active NavLink */
.nav-item[b-n2iu3x8c5g]  a.active {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.08);
    font-weight: 600;
}

.nav-item[b-n2iu3x8c5g]  a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background-color: var(--bs-primary);
    border-radius: 2px;
}

/* Hover effect for all navigation links */
.nav-item[b-n2iu3x8c5g]  a:hover {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Footer area */
.sidebar-footer[b-n2iu3x8c5g] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}
/* _content/Gift.App/Shared/NavMenuMobile.razor.rz.scp.css */
/* Ensure the mobile menu overlays content properly */
.navbar-toggler[b-3imwrg70hw] {
    background-color: transparent;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

/* Base style for nav links in mobile view */
[b-3imwrg70hw] .nav-link {
    color: #495057;
    border-radius: 8px;
    /* Rounded corners for touch targets */
    transition: all 0.2s ease-in-out;
    margin-bottom: 0.5rem;
}

/* Active State styling */
[b-3imwrg70hw] .nav-link.active {
    color: var(--bs-primary) !important;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    font-weight: 600;
}

/* Hover state */
[b-3imwrg70hw] .nav-link:not(.active):hover {
    background-color: #f8f9fa;
    color: var(--bs-primary);
}

/* User status area styling */
.navbar-header[b-3imwrg70hw] {
    padding: 0.5rem 1rem;
}

/* Hamburger Icon Styling */
