/* _content/JuiceEvents.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-98mvs57zl0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row[b-98mvs57zl0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-98mvs57zl0]  a, .top-row[b-98mvs57zl0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-98mvs57zl0]  a:hover, .top-row[b-98mvs57zl0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-98mvs57zl0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-98mvs57zl0] {
        justify-content: space-between;
    }

    .top-row[b-98mvs57zl0]  a, .top-row[b-98mvs57zl0]  .btn-link {
        margin-left: 0;
    }
}

#blazor-error-ui[b-98mvs57zl0] {
    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-98mvs57zl0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/JuiceEvents.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Toggle Button Styles */
.navbar-toggler[b-voieg0xn4z] {
    appearance: none; /* Remove default button styling */
    padding: 0.5rem;
    border: none;
    /* Center the icon inside the button */
    /* Prevent repeating the icon */
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center;
    background-size: contain; /* Adjust the icon size */
    border-radius: 5%; /* Rounded button for clean design */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for a "floating" effect */
    cursor: pointer;
    width: 2.5rem; /* Diameter of the toggle button */
    height: 2.5rem; /* Diameter of the toggle button */
    position: absolute;
    right: 1rem; /* Align toggle button to the right edge of the app bar */
    top: 0.5rem; /* Vertically center inside the app bar */
    z-index: 11; /* Ensure it stays above other elements */
}

.navbar-toggler:checked[b-voieg0xn4z] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-voieg0xn4z] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-voieg0xn4z] {
    font-size: 1.25rem;
}

.nav-item[b-voieg0xn4z] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-voieg0xn4z] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-voieg0xn4z] {
        padding-bottom: 1rem;
    }

    .nav-item[b-voieg0xn4z]  .nav-link {
        /*color: #d7d7d7;*/
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-voieg0xn4z]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-voieg0xn4z]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-voieg0xn4z] {
    display: none;
}

/* Toggle Button Hover Effects */
.navbar-toggler:hover[b-voieg0xn4z] {
    background-color: inherit; /* Light gray on hover for contrast */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow on hover */
}

/* Navigation Menu (Hidden by Default) */
.nav-scrollable[b-voieg0xn4z] {
    display: none; /* Hide the menu initially */
    position: fixed;
    background-color: #f7f7f7; /* Light background for the menu */
    /*top: 3.5rem; !* Push below the app bar *!*/
    top: 64px;
    right: 0;
    width: 250px;
    max-height: 100vh;
    overflow-y: auto; /* Enable scrolling if the content overflows */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow around the dropdown */
    z-index: 10;
}

/* Show Navigation Menu When Toggle Is Checked */
.navbar-toggler:checked + .nav-scrollable[b-voieg0xn4z] {
    display: block; /* Display the navigation menu when the toggle button is checked */
}

/* Navigation Menu Links */
.nav-scrollable .nav-link[b-voieg0xn4z],
.nav-scrollable .nav-item[b-voieg0xn4z] {
    color: #333; /* Dark text for readability */
    padding: 0.5rem 1rem;
    display: block; /* Ensure links break into new lines */
    text-decoration: none;
}

.nav-scrollable .nav-link:hover[b-voieg0xn4z] {
    background-color: #e8541f; /* Highlight links with the app bar color */
    color: #fff; /* White text for contrast on hover */
}

/* Form Button inside Nav Menu */
.nav-scrollable form button.nav-link[b-voieg0xn4z] {
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

.nav-scrollable form button.nav-link:hover[b-voieg0xn4z] {
    background-color: #e8541f;
    color: #fff;
}

/*@media (min-width: 641px) {*/
/*    .navbar-toggler {*/
/*        !*display: none;*!*/
/*    }*/

/*    .nav-scrollable {*/
/*        !* Never collapse the sidebar for wide screens *!*/
/*        display: block;*/

/*        !* Allow sidebar to scroll for tall menus *!*/
/*        height: calc(100vh - 3.5rem);*/
/*        overflow-y: auto;*/
/*    }*/
/*}*/

/* General Responsive Design for Navigation */
@media (max-width: 768px) {
    .nav-scrollable[b-voieg0xn4z] {
        width: 100%; /* Ensure the menu spans full width on smaller screens */
    }
}
