/* _content/DET/Components/Layout/FileManager.razor.rz.scp.css */
.file-manager[b-n5oy58y2st] {
    font-family: system-ui, sans-serif;
    max-width: 700px;
    margin: auto;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: #f9f9f9;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

    .file-manager input[b-n5oy58y2st] {
        padding: 0.5rem;
        border-radius: 0.4rem;
        border: 1px solid #ccc;
        width: 60%;
        margin-right: 0.5rem;
    }

    .file-manager button[b-n5oy58y2st] {
        padding: 0.5rem 0.75rem;
        border-radius: 0.4rem;
        border: none;
        background-color: #007bff;
        color: white;
        cursor: pointer;
        transition: background-color 0.2s ease-in-out;
    }

        .file-manager button:hover[b-n5oy58y2st] {
            background-color: #0056b3;
        }

    .file-manager ul[b-n5oy58y2st] {
        list-style-type: none;
        padding: 0;
        margin-top: 1rem;
    }

    .file-manager li[b-n5oy58y2st] {
        padding: 0.5rem 0.25rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #eee;
    }

        .file-manager li button[b-n5oy58y2st] {
            background: none;
            border: none;
            color: #007bff;
            cursor: pointer;
            padding: 0;
            font-size: 1rem;
        }

            .file-manager li button:hover[b-n5oy58y2st] {
                text-decoration: underline;
            }

        .file-manager li a[b-n5oy58y2st] {
            color: #333;
            text-decoration: none;
        }

            .file-manager li a:hover[b-n5oy58y2st] {
                text-decoration: underline;
            }

.file-item[b-n5oy58y2st] {
    padding: 0.5rem 0.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    justify-content: space-between; /* Wichtig: Text links, Icon rechts */
}

    .file-item.clickable:hover[b-n5oy58y2st] {
        background-color: #eef5ff;
    }

    .file-item.clickable[b-n5oy58y2st] {
        cursor: pointer;
    }

.delete-button[b-n5oy58y2st] {
    background: none;
    border: none;
    color: #cc0000;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
}

    .delete-button:hover[b-n5oy58y2st] {
        color: red;
    }

.file-controls[b-n5oy58y2st] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.control-group[b-n5oy58y2st] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .control-group.search[b-n5oy58y2st] {
        position: relative;
    }

.search-group[b-n5oy58y2st] {
    position: relative;
    display: inline-block;
}

.search-icon[b-n5oy58y2st] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none; /* Damit Klicks auf Input durchgehen */
}

.search-group input[b-n5oy58y2st] {
    padding-left: 30px; /* Platz für das Icon */
}

.file-manager-modal-backdrop[b-n5oy58y2st] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.file-manager-modal[b-n5oy58y2st] {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    min-width: 300px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

    .file-manager-modal h4[b-n5oy58y2st] {
        margin-top: 0;
        margin-bottom: 1rem;
    }

.file-manager-modal-buttons[b-n5oy58y2st] {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.folder-icon[b-n5oy58y2st] {
    color: #f1c40f; /* kräftiges Gelb */
    font-size: 1.75rem; /* leicht vergrößert (z. B. 20px) */
    margin-right: 8px;
}

.up-icon-active[b-n5oy58y2st] {
    color: seagreen !important;
}

.up-icon-disabled[b-n5oy58y2st] {
    color: lightgray !important;
}

.breadcrumbs[b-n5oy58y2st] {
    display: flex;
    flex-wrap: wrap; /* Wichtig: erlaubt Zeilenumbruch */
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    background-color: #f0f0f0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

    .breadcrumbs ol[b-n5oy58y2st] {
        display: flex;
        flex-wrap: wrap; /* Auch hier sicherstellen */
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .breadcrumbs li[b-n5oy58y2st] {
        display: flex;
        align-items: center;
        flex-shrink: 0; /* Optional: verhindert, dass Items gequetscht werden */
        margin-right: 0.5rem;
    }

    .breadcrumbs a[b-n5oy58y2st] {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        white-space: nowrap; /* Optional: verhindert Umbruch innerhalb von Links */
    }

        .breadcrumbs a:hover[b-n5oy58y2st] {
            text-decoration: underline;
        }

    .breadcrumbs span.separator[b-n5oy58y2st] {
        margin: 0 0.25rem;
        color: #aaa;
        font-weight: bold;
    }

.file-icon[b-n5oy58y2st] {
    font-size: 1.75em;
}
/* ===============================
   Datei-Icons nach Endung einfärben
   =============================== */
.file-icon-excel[b-n5oy58y2st] {
    color: green;
}

.file-icon-word[b-n5oy58y2st] {
    color: dodgerblue;
}

.file-icon-archive[b-n5oy58y2st] {
    color: goldenrod;
}

.file-icon-pdf[b-n5oy58y2st] {
    color: crimson;
}

.file-icon-image[b-n5oy58y2st] {
    color: mediumvioletred;
}

.file-icon-text[b-n5oy58y2st] {
    color: gray;
}

.file-icon-corel[b-n5oy58y2st] {
    color: hotpink;
}

.file-icon-default[b-n5oy58y2st] {
    color: #444;
}
/* _content/DET/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-496nopwqzh] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-496nopwqzh] {
    flex: 1;
}

.sidebar[b-496nopwqzh] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-496nopwqzh] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-496nopwqzh]  a, .top-row[b-496nopwqzh]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-496nopwqzh]  a:hover, .top-row[b-496nopwqzh]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-496nopwqzh]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-496nopwqzh] {
        justify-content: space-between;
    }

    .top-row[b-496nopwqzh]  a, .top-row[b-496nopwqzh]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-496nopwqzh] {
        flex-direction: row;
    }

    .sidebar[b-496nopwqzh] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-496nopwqzh] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-496nopwqzh]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-496nopwqzh], article[b-496nopwqzh] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-496nopwqzh] {
    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-496nopwqzh] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
