/* /Layout/FooterCard.razor.rz.scp.css */
footer[b-raet3zl3z3] {
    margin-top: auto;  /* pushes footer to bottom dynamically */
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 1%);
    color: #f7f7f7;
    padding: 1rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2); /* optional subtle border */
}

footer a[b-raet3zl3z3] {
    color: #f7f7f7;
    margin: 0 0.5rem;
    text-decoration: none;
}

footer a:hover[b-raet3zl3z3] {
    color: #00bfff;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Ensure the whole page fills the viewport */
.page[b-2bpmk7ah1s] {
    display: flex;
    flex-direction: column;   /* stack sidebar + main on mobile */
    min-height: 100vh;
    margin: 0;
}

/* Sidebar and main height adjustments */
.sidebar[b-2bpmk7ah1s] {
    width: 265px;
    height: auto; /* good */
    top: 1160;
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 50%);
}

main[b-2bpmk7ah1s] {
    flex: 1 1 auto;           /* grow and shrink as needed */
    display: flex;
    flex-direction: column;
    min-height: 0;           /* prevents overflow inside flex */
}

article.content[b-2bpmk7ah1s] {
    flex: 1 1 auto;           /* forces content area to grow and push footer down */
    min-height: 0;
    display: flex;
    flex-direction: column;
}


/* Top-row sticky behavior */
.top-row[b-2bpmk7ah1s] {
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #d6d5d5;
}

/* Desktop adjustments */
@media (min-width: 641px) {
    .page[b-2bpmk7ah1s] {
        flex-direction: row;  /* sidebar left, main right */
    }

    .sidebar[b-2bpmk7ah1s] {
        width: 265px;
        height: auto; /* full viewport height */
        position: sticky;
        top: 0;
    }

    main[b-2bpmk7ah1s] {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    article.content[b-2bpmk7ah1s] {
        flex: 1;
        min-height: 0;
    }
}

@media (max-width: 641px) {
    .sidebar[b-2bpmk7ah1s] {
        width: 150px;
        height: auto; /* full viewport height */
        position: relative;
        top: 0;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */


.top-row[b-5hsoe0ou2p] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

 
.nav-item[b-5hsoe0ou2p] {
    font-size: 17px;
    padding-bottom: 0.5rem;
    font-style: it;
}

    .nav-item:first-of-type[b-5hsoe0ou2p] {
        padding-top: 2rem;
    }

    .nav-item:last-of-type[b-5hsoe0ou2p] {
        padding-bottom: 1rem;
    }

    .nav-item[b-5hsoe0ou2p]  a {
        color: #d7d7d7;
        border-radius: 5px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-5hsoe0ou2p]  a.active {
            background-color: rgba(255,255,255,0.37);
            color: white;
        }

        .nav-item[b-5hsoe0ou2p]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-5hsoe0ou2p] {
        display: none;
    }

    .collapse[b-5hsoe0ou2p] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}


/* Small screens (phones) */
@media (max-width: 641px) {
    .top-row[b-5hsoe0ou2p] {
        min-height: 3.5rem;
        background-color: rgba(0,0,0,0.4);
    }


    .nav-item[b-5hsoe0ou2p] {
        font-size: 12px;
        padding-bottom: 0.5rem;
        font-style: it;
    }

        .nav-item:first-of-type[b-5hsoe0ou2p] {
            padding-top: 2rem;
        }

        .nav-item:last-of-type[b-5hsoe0ou2p] {
            padding-bottom: 1rem;
        }

        .nav-item[b-5hsoe0ou2p]  a {
            color: #d7d7d7;
            border-radius: 5px;
            height: 25px;
            display: flex;
            align-items: center;
            line-height: auto;
        }

            .nav-item[b-5hsoe0ou2p]  a.active {
                background-color: rgba(255,255,255,0.37);
                color: white;
            }

            .nav-item[b-5hsoe0ou2p]  a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

     
}
