body {
    /* Schöner tiefer Farbverlauf */
    background: linear-gradient(135deg, #070b36 0%, #29219c 50%, #070b36 100%) no-repeat center center fixed;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding-top: 10px !important;
    min-height: 100vh;
}

/* Gemeinsame Styles für alle Inhalts-Boxen */
.wincolor {
    background: rgba(255, 255, 255, 0.05); /* Ganz leichter, gläserner Hintergrund */
    backdrop-filter: blur(10px);           /* Moderner Milchglas-Effekt */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;                   /* Abgerundete Ecken */
    padding: 30px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;                      /* Verhindert, dass die Boxen zu breit werden */
    box-sizing: border-box;                /* Wichtig für korrektes Padding */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

h1, h2, h3 {
    margin-top: 0;
    color: #fff;
}

#uberschrift {
    background: transparent; /* Überschrift braucht keine Box */
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
    margin: 0 !important;
    padding: 15px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#uberschrift h1 {
    font-size: 2.5em;
    letter-spacing: 1px;
    margin: 0 !important; /* Killt den Standard-Browser-Abstand */
    padding: 20px 0 !important;
}

/* Styling für die Eingabefelder */
input[type="email"], 
input[type="text"] {
    width: 100%;             /* Nutzt die volle Breite der Box */
    padding: 14px;           /* Angenehme Höhe */
    margin: 15px 0;          /* Abstand nach oben/unten */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Dezenter Rahmen */
    background: rgba(255, 255, 255, 0.9);       /* Fast weiß, leichter Kontrast */
    font-size: 1.1em;
    box-sizing: border-box;  /* Ganz wichtig: Padding zählt nicht zur Breite dazu! */
    outline: none;
    color: #333;
}

/* Fokus-Effekt, wenn man reinklickt */
input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Spezielle Anpassung für das Code-Feld */
#auth-code {
    text-align: center;
    letter-spacing: 10px;    /* Viel Platz zwischen den Zahlen */
    font-weight: bold;
    font-size: 1.4em;
}

/* Buttons auf die exakt gleiche Breite bringen */
button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #00d4ff;
    color: #070b36;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    box-sizing: border-box; /* Damit auch der Button perfekt passt */
    transition: all 0.2s ease;
}

button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Liste in der Beschreibung verschönern */
#beschreibung ul {
    text-align: left; /* Text in Listen liest sich linksbündig besser */
    padding-left: 20px;
    line-height: 1.6;
}

#beschreibung li {
    margin-bottom: 10px;
}
#code-step a {
    text-decoration: none;
}
#code-step a:hover {
    text-decoration: underline;
}



.footer-links {
    margin-top: 30px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6); /* Dezent transparentes Weiß */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00d4ff; /* Deine Akzentfarbe beim Drüberfahren */
}

.footer-links p {
    margin: 10px 0 0 0; /* Verhindert große Abstände nach oben/unten */
    display: block;      /* Sorgt dafür, dass es eine eigene Zeile ist */
}

.brand-link {
    font-weight: bold;
    color: #fff !important;
    margin-left: 2px !important; /* Damit es direkt hinter "powered by" steht */
    display: inline;             /* Verhindert das Auseinanderziehen */
}

.poll-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-action.stop { border-color: #ffa500; color: #ffa500; }
.btn-action.stop:hover { background: #ffa500; color: #fff; }

.btn-action.delete { border-color: #ff4d4d; color: #ff4d4d; }
.btn-action.delete:hover { background: #ff4d4d; color: #fff; }

.btn-action.archive { border-color: #aaa; color: #aaa; }
.btn-action.archive:hover { background: #aaa; color: #fff; }

.status-badge {
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.status-active { background: rgba(0, 212, 255, 0.2); color: #00d4ff; }
.status-stopped { background: rgba(255, 165, 0, 0.2); color: #ffa500; }