/* Grundlegende Seite */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 20px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container für den Inhalt */
.container {
    text-align: center;
    max-width: 450px;
    width: 100%;
    padding: 30px;
    border: 2px solid #444;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Überschrift */
.container h1 {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.8em;
    letter-spacing: 1.2px;
}

/* Start-Button */
button#startBtn {
    background-color: #0af;
    border: none;
    color: #fff;
    padding: 14px 30px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#startBtn:disabled {
    background-color: #555;
    cursor: not-allowed;
}

button#startBtn:hover:not(:disabled) {
    background-color: #06c;
}

/* Fortschrittsbalken-Container */
#progress-container {
    margin-top: 30px;
}

/* Fortschrittsbalken */
progress#progressBar {
    width: 100%;
    height: 25px;
    border-radius: 12px;
    appearance: none;
    -webkit-appearance: none;
    overflow: hidden;
    box-shadow: inset 0 0 8px #0af;
    background-color: #222;
}

progress#progressBar::-webkit-progress-bar {
    background-color: #222;
    border-radius: 12px;
}

progress#progressBar::-webkit-progress-value {
    background-color: #0af;
    border-radius: 12px;
}

progress#progressBar::-moz-progress-bar {
    background-color: #0af;
    border-radius: 12px;
}

/* Statustext */
#statusText {
    margin-top: 15px;
    font-size: 1em;
    font-weight: 600;
    color: #0af;
    min-height: 1.2em;
}
