/* CSS Variablen für einfaches Branding */
:root {
    --primary-color: #3b82f6;
    --bgcolor: #0f172a;
    --text-color: #f8fafc;
    --card-bg: #1e293b;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bgcolor);
    color: var(--text-color);

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.status {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.card {
    background-color: var(--card-bg);
    padding: 2.5rem; /* Etwas mehr Platz */
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 450px;
    display: flex;
    flex-direction: column; /* Stapelt die Inhalte vertikal */
    gap: 1.5rem; /* Automatischer Abstand zwischen den Elementen */
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #444, transparent);
    margin: 1rem 0;
}

.result-box {
    margin-top: 1rem;
    min-height: 50px; /* Verhindert das Springen des Layouts beim Laden */
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

button {
    width: 100%; /* Button über die volle Breite für moderne Optik */
    padding: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    /* ... restliche Button-Styles von vorhin ... */
}
