/* Loading Page little box in the middle of the screen */
.root_loading {
    display: flex;
    /* Standardmäßig nicht anzeigen */
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* Ensures the container fills the viewport height */
    width: 100vw;
    /* Ensures the container fills the viewport width */
    background-color: rgba(247, 244, 244, 0.5);
    /* Can be adjusted */
    position: fixed;
    /* Keeps it in place even during scrolling */
    top: 0;
    left: 0;
    z-index: 9999;
    /* Ensures it appears above other elements */
    box-sizing: border-box;
}

.loaderWrapper {
    padding: 20px;
    background-color: #fff;
    /* Provides contrast against possibly busy background */
    border-radius: 10px;
    /* Rounds the corners for a softer appearance */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    max-width: 600px;
    /* Adjust as needed to fit content and not stretch */
}



.root {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    /* Fixierte Position */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    /* Transparenter Hintergrund */
}

.loaderWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    /* Hintergrund des Ladebereichs */
    border-radius: 10px;
    /* Optional: Eigener Schatten oder andere Stile */
}

.loader {
    text-align: center;
}

.loading-icon img {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#logview-container {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#logview {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

#logview li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

#logview li:last-child {
    border-bottom: none;
}