/* /Shared/MainLayout.razor.rz.scp.css */
/* This bit creates some space between the navbar and the content in the first-following container be sure to apply this class !*/
.content-after-navbar[b-bx27v12vsw] {
    margin-top: var(--scroll-padding, 50px); /* This variable is set during rendering of the NavMenu component */
}

.footer[b-bx27v12vsw] {
    clear: both;
    position: relative;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    margin-top: 10px;
}

.wrapper[b-bx27v12vsw] {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures that the container takes at least the full viewport height. */
}

main[b-bx27v12vsw] {
    flex: 1; /* Allows the main content to grow and fill available space. */
}
/* /Shared/NavMenu.razor.rz.scp.css */
/*Don't display navbar if screen is wider or equal to 641px ?*/
@media (min-width: 641px) {
    .navbar-toggler[b-phuagnnzuk] {
        display: none;
    }

    .collapse[b-phuagnnzuk] {
        /* Never collapse the navbar for wide screens */
        display: block;
    }
}
/* /Shared/Pages/Index.razor.rz.scp.css */
.partial-background[b-pr7xi0adp2] {
    position: relative;
    z-index: 0; /* Ensure the background is behind other content */
}

    .partial-background[b-pr7xi0adp2]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%; /* Center the background element */
        width: 100vw; /* Make it span the width of the viewport */
        height: 100%; /* Match the height of the container */
        margin-left: -50vw; /* Offset half of the viewport width to center it */
        background-color: #94737a;/* Set your desired background color #3c3c3c*/
        z-index: -1; /* Place the background behind other content */
    }

.main-color[b-pr7xi0adp2] {
    color: #ffb02e
}

.main-color-background[b-pr7xi0adp2] {
    background-color: #ffb02e;
}

.secondary-color[b-pr7xi0adp2] {
    color: #94737a;
}

.secondary-color-background[b-pr7xi0adp2] {
    background-color: #94737a;
}
