@import '_content/AuralizeBlazor/AuralizeBlazor.tf5u2o3oxg.bundle.scp.css';
@import '_content/Nextended.Blazor/Nextended.Blazor.tkxqvq0zjw.bundle.scp.css';

/* _content/VCC_Projekt/Components/Layout/MainLayout.razor.rz.scp.css */
/* Reset and Base Styles */
html[b-r3ceve5tej], body[b-r3ceve5tej] {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents double scrollbars */
}

.page[b-r3ceve5tej] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.main-content[b-r3ceve5tej] {
    flex: 1;
    overflow-y: hidden; /* Enables scrolling for the main content */
    display: flex;
    flex-direction: column;
    padding-top: 4.0rem; /* Adds top padding for the main content */
}

.content[b-r3ceve5tej] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    scrollbar-width: thick; /* For Firefox */
}
/* Custom Scrollbar */
[b-r3ceve5tej]::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

[b-r3ceve5tej]::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

[b-r3ceve5tej]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3a0647 0%, rgb(5, 39, 103) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

    [b-r3ceve5tej]::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #4a0757 0%, rgb(15, 49, 113) 100%);
    }

.main-container[b-r3ceve5tej] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* Desktop View */
@media (min-width: 768px) {
    .page[b-r3ceve5tej] {
        flex-direction: row;
    }

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

@media (max-width: 767.98px) {
    .content[b-r3ceve5tej] {
        margin-top: 0;
    }
}
/* Blazor Error UI */
#blazor-error-ui[b-r3ceve5tej] {
    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: 2000;
}

    #blazor-error-ui .dismiss[b-r3ceve5tej] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/VCC_Projekt/Components/Layout/NavMenu.razor.rz.scp.css */
/* Existing styles */
.top-navbar[b-2d96908eyi] {
    background-color: #052767;
    width: 100%;
    height: auto; /* Change this to auto to allow the navbar to grow */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    padding: 0 1.5rem;
}

.navbar-brand-container[b-2d96908eyi] {
    display: flex;
    justify-content: flex-start; /* Links ausrichten */
    align-items: center;
    height: 3.5rem;
    width: auto;
    padding: 0;
}

.navbar-brand[b-2d96908eyi] {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar-logo[b-2d96908eyi] {
    height: 3rem; /* H�he anpassen, um innerhalb der Navbar zu passen */
    width: auto; /* Seitenverh�ltnis beibehalten */
    margin-right: 0.5rem; /* Abstand zwischen Logo und Text */
    background: transparent !important;
}
/* Benutzerdefinierte Scrollleiste f�r Nav */
.nav-scrollable[b-2d96908eyi]::-webkit-scrollbar {
    width: 8px;
}

.nav-scrollable[b-2d96908eyi]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
}

.nav-scrollable[b-2d96908eyi] {
    display: block !important;
    background-color: transparent;
    width: auto;
    flex-grow: 1;
    overflow: visible !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
    position: center;
}

.nav-container[b-2d96908eyi] {
    width: 100%;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between; /* Verteile die Elemente */
    align-items: center;
}

.nav-items[b-2d96908eyi] {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    flex-grow: 1;
    flex-wrap: wrap; /* Add this line to enable wrapping */
}

.nav-item[b-2d96908eyi] {
    font-size: 0.95rem;
    margin: 0.15rem 0;
    height: auto; /* Allow nav items to grow */
    display: flex;
    align-items: center;
}

    .nav-item[b-2d96908eyi]  .nav-link {
        color: #e0e0e0;
        background: none;
        border: none;
        border-radius: 6px;
        height: 3.0rem;
        display: flex;
        align-items: center;
        padding: 0 1rem;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .nav-item[b-2d96908eyi]  a.active {
        background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
        color: white;
        font-weight: 500;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-item[b-2d96908eyi]  .nav-link:hover {
        background-color: rgba(255,255,255,0.15);
        color: white;
        transform: translateY(-2px);
    }

    .nav-item.last-child[b-2d96908eyi] {
        display: flex;
        gap: 0.5rem; /* Abstand zwischen Register und Login */
        margin-left: auto; /* Letztes Kind ganz rechts ausrichten */
    }


@media (max-width: 1300px) {
    .nav-item[b-2d96908eyi]  .nav-link span {
        display: none; /* Verstecke den Text */
    }

    .nav-item[b-2d96908eyi]  .nav-link {
        justify-content: center; /* Zentriere die Icons */
    }
}
