@import "_file-upload.css";

.page-container {
    text-align: center;
}

#userTimesContainer, #userTimesList {
    display: inline-block;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Hintergrund leicht decken */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-size: 18px;
    color: #333;
}

.loader p {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}

/* Animierter Lade-Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 8px solid rgba(0, 0, 0, 0.1); /* Grauer Rand */
    border-top: 8px solid #3498db; /* Blauer animierter Rand */
    border-radius: 50%; /* Rundes Element */
    animation: spin 1s linear infinite; /* Animations-Effekt */
}

/* Keyframes für das Drehen des Rads */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Verstecke den Loader, wenn nötig */
.hidden {
    display: none;
}


tr.disabled {
    color: #ccc;
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .userTimesList {
        margin-top: 0;
    }
}
