/* Loading Screen */
.loading-screen {
    height: 90vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.loading-content {
    text-align: center;
}

.loading-spinner-container {
    position: relative;
    margin-bottom: var(--dist-l);
}

.loading-title {
    margin-top: var(--dist-xxl);
    color: var(--text);
}

.loading-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--dist-m);
}

.logo-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 250px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

/* DAS DREHENDE RAD */
.wheel {
    position: absolute;
    transform-box: fill-box;
    transform-origin: center;
    animation: spin 1s linear infinite;
    color: var(--text);
}

.wheel-left {
    left: 15px;
    bottom: 19px;
    width: 70px;
    height: 70px;
}

.wheel-right {
    right: 15px;
    bottom: 19px;
    width: 70px;
    height: 70px;
}


/* LOGO BLEIBT STATISCH */
.logo-svg {
    pointer-events: none;
    color: var(--text);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#watchdogProgress {
    width: 200px;
    height: 10px;
    appearance: none;
    -webkit-appearance: none;
}

/* Hintergrund (Track) */
#watchdogProgress::-webkit-progress-bar {
    background-color: var(--bg-light);
    border-radius: 5px;
}

/* Fortschritt (Fill) */
#watchdogProgress::-webkit-progress-value {
    background-color: var(--primary);
    border-radius: 5px;
}

/* Firefox */
#watchdogProgress::-moz-progress-bar {
    background-color: var(--primary);
    border-radius: 5px;
}