@import 'ToolHub.Client.bundle.scp.css';

/* _content/ToolHub/Components/Layout/Footer.razor.rz.scp.css */
.bi[b-6c8fk9cxy9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    background-size: cover;
    font-size: 1.2rem;
}

.nav-item[b-6c8fk9cxy9] {
    font-size: 1rem;
    padding-bottom: 0.4rem;
}


    .nav-item[b-6c8fk9cxy9]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        

        align-items: center;
        width: 100%;
    }


label[b-6c8fk9cxy9]{
    margin-bottom: 1vh;
}
/* _content/ToolHub/Components/Layout/MainLayout.razor.rz.scp.css */
/* Hauptcontainer */
.page[b-amhzeeky5j] {
    position: relative;
    display: flex;
    flex-direction: row; /* Horizontaler Layout f�r Sidebar und main */
    min-height: 100vh; /* Mindesth�he des Viewports */
    background: #232440;
}

/* Sidebar */
.sidebar[b-amhzeeky5j] {
    background: #4d2c3b;
    background: radial-gradient(circle,rgba(77, 44, 59, 1) 0%, rgba(35, 36, 64, 1) 100%);
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
}

/* Hauptinhalt */
main[b-amhzeeky5j] {
    flex: 1; /* Nimmt den restlichen Platz ein */
    display: flex;
    flex-direction: column; /* Vertikale Anordnung innerhalb von main */
    min-height: 100vh; /* Mindesth�he, um den Footer am Ende zu halten */
}

/* Top-Row */
.top-row[b-amhzeeky5j] {
    background-color: #232440;
    border-bottom: 1px solid rgba(35, 36, 64, 1);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

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

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

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

/* Artikel-Inhalt */
.content[b-amhzeeky5j] {
    flex: 1 0 auto; /* Nimmt den verf�gbaren Platz ein, aber schrumpft nicht */
}

/* Footer */
.footer[b-amhzeeky5j] {
    flex-shrink: 0; /* Verhindert, dass der Footer schrumpft */
    background-color: #232440;
    padding: 1rem;
    border-top: 1px solid #4D2C3B;
    text-align: center;
}

/* Media Queries f�r mobile Ansicht */
@media (max-width: 640.98px) {
    .top-row[b-amhzeeky5j] {
        justify-content: space-between;
    }

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

    .sidebar[b-amhzeeky5j] {
        display: none; /* Sidebar in der mobilen Ansicht ausblenden */
    }

    main[b-amhzeeky5j] {
        width: 100%; /* Vollbreite in der mobilen Ansicht */
    }
}

/* Media Queries f�r Desktop-Ansicht */
@media (min-width: 641px) {
    .sidebar[b-amhzeeky5j] {
        width: 350px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

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

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

    .top-row[b-amhzeeky5j], .content[b-amhzeeky5j] {

    }
}

/* Blazor Error UI */
#blazor-error-ui[b-amhzeeky5j] {
    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-amhzeeky5j] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    #blazor-error-ui .reload[b-amhzeeky5j] {
        text-decoration: underline;
    }
/* _content/ToolHub/Components/Layout/Modal.razor.rz.scp.css */
.modal[b-m6e3a747qs] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* Dunkler Hintergrund */
    z-index: 1000;
    overflow: auto;
}

    .modal.show[b-m6e3a747qs] {
        display: flex; /* Flex für Zentrierung */
        justify-content: center;
        align-items: center;
    }

.modal-dialog[b-m6e3a747qs] {
    position: relative;
    width: 90%;
    max-width: 500px; /* Begrenzte Breite für Card-Design */
    background-color: white;
    border-radius: 8px; /* Abgerundete Ecken für Card-Look */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Schatten für Card-Effekt */
    padding: 20px;
    z-index: 1001;
}

.modal-content[b-m6e3a747qs] {
    width: 100%;
}

.modal-header[b-m6e3a747qs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-body[b-m6e3a747qs] {
    margin-bottom: 15px;
}

    .modal-body button[b-m6e3a747qs] {
        margin-top: 10px;
        padding: 8px 16px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .modal-body button:hover[b-m6e3a747qs] {
            background-color: #0056b3;
        }
/* _content/ToolHub/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wvrp8w0a80] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-wvrp8w0a80] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-wvrp8w0a80] {
    height: 3.5rem;
    background-color: #4D2C3B;
}

.navbar-brand[b-wvrp8w0a80] {
    font-size: 1.2rem;
}

.bi[b-wvrp8w0a80] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    background-size: cover;
    font-size: 1.2rem;
}

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

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

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

    .nav-item[b-wvrp8w0a80]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 2.5rem;
        display: flex;
        align-items: center;

        width: 100%;
    }

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

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

.nav-scrollable[b-wvrp8w0a80] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-wvrp8w0a80] {
    display: block;
}

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

    .nav-scrollable[b-wvrp8w0a80] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
