/* /Components/CookieConsent.razor.rz.scp.css */
/* ── Large screens: anchored bottom-left ────────────────────────────────── */
.cookie-banner[b-il4r8jo256] {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    transform: none;
    z-index: 9999;
    width: min(92vw, 680px);
    background: var(--mud-palette-surface, #1e2125);
    color: var(--mud-palette-text-primary, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    padding: 1rem 1.25rem;
    animation: slide-up-b-il4r8jo256 0.3s ease-out;
}

@keyframes slide-up-b-il4r8jo256 {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner__content[b-il4r8jo256] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-banner__text[b-il4r8jo256] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-banner__icon[b-il4r8jo256] {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    opacity: 0.7;
}

.cookie-banner__text a[b-il4r8jo256] {
    color: var(--mud-palette-primary, #3a9aa0);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* MudGrid container for buttons — no extra margin needed */
.cookie-banner__actions[b-il4r8jo256] {
    margin: 0 !important;
    width: 100%;
}

@media (max-width: 600px) {
    .cookie-banner[b-il4r8jo256] {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        width: min(96vw, 680px);
    }

    @keyframes slide-up-b-il4r8jo256 {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(1.5rem);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
}
/* /Components/Landing/NavCards.razor.rz.scp.css */

.nav-hover[b-2dxjn5suq4] {
    border-style: hidden !important;
    border-color: var(--mud-palette-tertiary) !important;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}
    .nav-hover:hover[b-2dxjn5suq4] {
        transform: scale(1.02);
        border-style: solid !important;
        z-index: 2;
    }
/* /Components/Landing/Picture.razor.rz.scp.css */

.image-border[b-m46wi18b2l] {
    position: relative; /* This is crucial for positioning the pseudo-element */
    display: inline-block; /* Makes the container wrap the content */
}

    .image-border[b-m46wi18b2l]::before {
        content: ''; /* Required for pseudo-elements to display */
        position: absolute; /* Positions the background relative to the parent .image-container */
        top: -64px; /* Adjust these values to position the background behind the image */
        left: 2px;
        width: 105%;
        height: 105%;
        background-color: transparent; /* Change this to your desired background color */
        transform: rotate(-10deg);
        transform-origin: bottom center; /* The key to the rotation */
        z-index: 5; /* Ensures the background is behind the image */
        border-radius: 8px; /* Optional: Adds rounded corners to the background */
        border: 8px solid var(--mud-palette-secondary);
        /*             clip-path: polygon( 16.6% 0%, /* Top-left corner */
        /*83.3% 0%,*/ /* Top-right corner */
        /*100% 16.6%,*/ /* Right-top corner */
        /*100% 83.3%,*/ /* Right-bottom corner */
        /*83.3% 100%,*/ /* Bottom-right corner */
        /*16.6% 100%,*/ /* Bottom-left corner */
        /*0% 83.3%,*/ /* Left-bottom corner */
        /*0% 16.6%*/ /* Left-top corner */
        /*);
        */
    }
/* The container sets the stage for positioning the background */
.image-container[b-m46wi18b2l] {
    position: relative; /* This is crucial for positioning the pseudo-element */
    display: inline-block; /* Makes the container wrap the content */
}

    /* The pseudo-element creates the rotated background */
    .image-container[b-m46wi18b2l]::before {
        content: ''; /* Required for pseudo-elements to display */
        position: absolute; /* Positions the background relative to the parent .image-container */
        top: -20px; /* Adjust these values to position the background behind the image */
        left: -34px;
        width: 100%;
        height: 100%;
        background-color: var(--mud-palette-primary); /* Change this to your desired background color */
        transform: rotate(10deg);
        transform-origin: bottom center; /* The key to the rotation */
        z-index: -1; /* Ensures the background is behind the image */
        border-radius: 8px; /* Optional: Adds rounded corners to the background */
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-w1p3036yin] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-w1p3036yin], article[b-w1p3036yin] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-w1p3036yin] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-w1p3036yin] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xbkme3f0c0] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.navbar-brand[b-xbkme3f0c0] {
    font-size: 1.1rem;
}

.oi[b-xbkme3f0c0] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-xbkme3f0c0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xbkme3f0c0] {
        padding-top: 1rem;
    }

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

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

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

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

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

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


.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link {
    cursor: pointer !important;
}

.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link:hover,
.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link:hover .mud-nav-link-text,
.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link:hover .mud-icon-root {
    cursor: pointer !important;
    color: var(--mud-palette-primary) !important;
}

.dev-nav-menu[b-xbkme3f0c0]  .nav-brand-link:hover,
.dev-nav-menu[b-xbkme3f0c0]  .nav-brand-link:hover .mud-icon-root,
.dev-nav-menu[b-xbkme3f0c0]  .nav-brand-link:hover .mud-typography,
.dev-nav-menu[b-xbkme3f0c0]  .nav-brand-link:hover * {
    color: var(--mud-palette-primary) !important;
}

.dev-nav-menu[b-xbkme3f0c0]  .mud-icon-button:hover,
.dev-nav-menu[b-xbkme3f0c0]  .mud-icon-button:hover .mud-icon-root {
    color: var(--mud-palette-primary) !important;
}

.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link.active,
.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link.active .mud-nav-link-text,
.dev-nav-menu[b-xbkme3f0c0]  .mud-nav-link.active .mud-icon-root {
    color: var(--mud-palette-secondary) !important;
    background-color: transparent !important;
}

.dev-nav-menu[b-xbkme3f0c0]  .nav-group-wrapper {
    cursor: pointer !important;
}

.dev-nav-menu[b-xbkme3f0c0]  .nav-group-wrapper:hover,
.dev-nav-menu[b-xbkme3f0c0]  .nav-group-wrapper:hover .mud-nav-link,
.dev-nav-menu[b-xbkme3f0c0]  .nav-group-wrapper:hover .mud-nav-link-text,
.dev-nav-menu[b-xbkme3f0c0]  .nav-group-wrapper:hover .mud-icon-root {
    color: var(--mud-palette-primary) !important;
}
