/* Grundlayout der Seite */
.timeout-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Container für den Countdown-Balken */
.progress-wrapper {
    width: 80%;
    max-width: 500px;
    background-color: #444;
    height: 25px;
    border-radius: 12px;
    margin: 40px 0;
    overflow: hidden;
    border: 2px solid #333;
}

/* Der sich bewegende Balken */
#progress-fill {
    width: 100%;
    height: 100%;
    background-color: #28a745;
    transition: width 1s linear, background-color 0.3s ease;
}

/* Warnfarbe für den Balken */
.progress-low {
    background-color: #dc3545 !important;
}

/* Button-Bereich */
.action-area {
    margin-top: 20px;
}