/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-czneyfxhxi] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-czneyfxhxi] {
    flex: 1;
}

.sidebar[b-czneyfxhxi] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-czneyfxhxi] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-czneyfxhxi]  a, .top-row[b-czneyfxhxi]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-czneyfxhxi]  a:hover, .top-row[b-czneyfxhxi]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-czneyfxhxi]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-czneyfxhxi] {
        justify-content: space-between;
    }

    .top-row[b-czneyfxhxi]  a, .top-row[b-czneyfxhxi]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-czneyfxhxi] {
        flex-direction: row;
    }

    .sidebar[b-czneyfxhxi] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-czneyfxhxi] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-czneyfxhxi]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-czneyfxhxi], article[b-czneyfxhxi] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* --- Wrapper --- */
.main-nav[b-1e6ec4s5c9] {
    background-color: rgb(8, 8, 8);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* --- Inner Container --- */
.nav-inner[b-1e6ec4s5c9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
}

/* --- Logo Style --- */
.nav-logo img[b-1e6ec4s5c9] {
    height: 75px;
    width: auto;
    border-radius: 3px;
}

/* -----------------------------
   DESKTOP NAV LINKS
--------------------------------*/
.nav-links[b-1e6ec4s5c9] {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

    .nav-links a[b-1e6ec4s5c9] {
        text-decoration: none;
        color: #ffffff;
        font-weight: 600;
        position: relative;
        padding: .25rem 0;
    }

        /* Hover underline */
        .nav-links a[b-1e6ec4s5c9]::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            height: 2px;
            width: 0;
            background: #ffffff;
            transition: width .25s;
        }

        .nav-links a:hover[b-1e6ec4s5c9]::after {
            width: 100%;
        }

/* -----------------------------
   MOBILE MENU
--------------------------------*/
.nav-toggle[b-1e6ec4s5c9] {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .nav-toggle span[b-1e6ec4s5c9] {
        width: 26px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: all .3s ease;
    }

/* CSS for Nav button animation */

.nav-button[b-1e6ec4s5c9] {
    display: none;
}

.dineuron-menu[b-1e6ec4s5c9] {
    display: none;
}

.mobile-nav-spacer[b-1e6ec4s5c9] {
    display: none;
}


@media (max-width: 768px) {
    .main-nav[b-1e6ec4s5c9] {
        position: fixed;
        right: 0;
        left: 0;
        width: 100%;
        padding-top: env(safe-area-inset-top);
    }

    .mobile-nav-spacer[b-1e6ec4s5c9] {
        display: block;
        height: calc(99px + env(safe-area-inset-top));
    }

    .desktop-nav[b-1e6ec4s5c9] {
        display: none;
    }

    .dineuron-menu[b-1e6ec4s5c9] {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 20vh;
    }

    .nav-button[b-1e6ec4s5c9] {
        display: block;
        position: relative;
        margin-left: auto;
        z-index: 4;
        border: solid 1px #fff;
        border-radius: 6px;
        height: 42px;
        width: 50px;
        padding: 12px;
        cursor: pointer;
        margin-right: 13px;
    }

        .nav-button #nav-icon3[b-1e6ec4s5c9] {
            width: 24px;
            height: 22px;
            display: inline-block;
            transform: rotate(0deg);
            position: relative;
            transition: 0.5s ease-in-out;
        }

            .nav-button #nav-icon3 span[b-1e6ec4s5c9] {
                display: block;
                position: absolute;
                height: 3px;
                width: 100%;
                background: #fff;
                border-radius: 9px;
                opacity: 1;
                left: 0;
                transform: rotate(0deg);
                transition: 0.25s ease-in-out;
                z-index: 4;
            }

                .nav-button #nav-icon3 span:nth-child(1)[b-1e6ec4s5c9] {
                    top: 0;
                }

                .nav-button #nav-icon3 span:nth-child(2)[b-1e6ec4s5c9],
                .nav-button #nav-icon3 span:nth-child(3)[b-1e6ec4s5c9] {
                    top: 7px;
                }

                .nav-button #nav-icon3 span:nth-child(4)[b-1e6ec4s5c9] {
                    top: 14px;
                }

    body.nav-open #nav-icon3 span:nth-child(1)[b-1e6ec4s5c9],
    body.nav-open #nav-icon3 span:nth-child(4)[b-1e6ec4s5c9] {
        top: 9px;
        width: 0;
        left: 50%;
    }

    body.nav-open #nav-icon3 span:nth-child(2)[b-1e6ec4s5c9] {
        transform: rotate(45deg);
    }

    body.nav-open #nav-icon3 span:nth-child(3)[b-1e6ec4s5c9] {
        transform: rotate(-45deg);
    }

    .flex-center[b-1e6ec4s5c9] {
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .dineuron-menu[b-1e6ec4s5c9] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in;
        background: rgba(0, 0, 0, 0.92);
        z-index: 3;
    }

    body.nav-open .dineuron-menu[b-1e6ec4s5c9] {
        opacity: 1;
        visibility: visible;
    }

    .dineuron-menu .nav li a[b-1e6ec4s5c9] {
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
    }

    .dineuron-menu .nav li[b-1e6ec4s5c9] {
        opacity: 0;
        transform: translateY(-40px);
        animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
    }

    .nav-open .dineuron-menu .nav li[b-1e6ec4s5c9] {
        opacity: 1;
        transform: translateY(0px);
        transition: transform 0.3s, opacity 0.3s;
    }

    .dineuron-menu .nav li.delay-1[b-1e6ec4s5c9] {
        transition-delay: 0.1s;
    }

    .dineuron-menu .nav li.delay-2[b-1e6ec4s5c9] {
        transition-delay: 0.2s;
    }

    .dineuron-menu .nav li.delay-3[b-1e6ec4s5c9] {
        transition-delay: 0.3s;
    }

    .dineuron-menu .nav li.delay-4[b-1e6ec4s5c9] {
        transition-delay: 0.4s;
    }

    .dineuron-menu .nav li.delay-5[b-1e6ec4s5c9] {
        transition-delay: 0.5s;
    }
}

.menu-close[b-1e6ec4s5c9] {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #ffcc33; /* matches Sucker Shack theme */
    cursor: pointer;
}

/* Mobile menu hidden by default */
@media (max-width: 769px) {
    .nav-toggle[b-1e6ec4s5c9] {
        display: flex;
    }

    .nav-links[b-1e6ec4s5c9] {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        display: none;
        border-bottom: 1px solid #ddd;
    }

        .nav-links.show[b-1e6ec4s5c9] {
            display: flex;
            animation: slideDown-b-1e6ec4s5c9 .35s ease;
        }

        .nav-links a[b-1e6ec4s5c9] {
            padding: 0.75rem 0;
            font-size: 1.15rem;
        }

        /*.dineuron-menu .nav li:first-child a{
            padding-top: 20vh;
            padding-left: 22vh;
        }*/

    @keyframes slideDown-b-1e6ec4s5c9 {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Burger animation */
    .nav-toggle.active span:nth-child(1)[b-1e6ec4s5c9] {
        transform: rotate(45deg) translateY(8px);
    }

    .nav-toggle.active span:nth-child(2)[b-1e6ec4s5c9] {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3)[b-1e6ec4s5c9] {
        transform: rotate(-45deg) translateY(-8px);
    }
}
