/* ===========================
   GLOBAL
=========================== */

body {
    background: #000;
    color: #b6ffb6;
    font-family: Consolas, monospace;
    padding: 20px;
}

h1, h2, h3 {
    color: #00ff66;
    margin: 0 0 10px 0;
}

button {
    padding: 8px 15px;
    background: #00ff66;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin: 5px 0;
    transition: 0.2s;
}

button:hover {
    background: #00cc55;
}

input {
    padding: 10px;
    width: 260px;
    background: #0f0f0f;
    border: 1px solid #00ff66;
    color: #b6ffb6;
    font-size: 16px;
}

/* ===========================
   HEADER
=========================== */

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 140px;
    margin-bottom: 10px;
}

.warning {
    color: #ff4444;
    font-size: 14px;
}

/* ===========================
   PANELS
=========================== */

.panel {
    display: none;
    border: 1px solid #00ff66;
    padding: 20px;
    background: #0a0a0a;
    margin-top: 20px;
}

.section {
    margin-bottom: 25px;
    border: 1px solid #00ff66;
    padding: 15px;
    background: #0f0f0f;
}

/* ===========================
   CODESCHNIPSEL
=========================== */

.code-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.code-box {
    background: #111;
    border: 1px solid #00ff66;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
    justify-content: center;
    font-size: 16px;
}

/* Farbpunkte */
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.blue   { background: #4db8ff; }
.yellow { background: #ffe600; }
.orange { background: #ff8800; }
.green  { background: #00ff44; }
.red    { background: #ff3333; }

/* ===========================
   STATIONEN
=========================== */

.station {
    border: 1px solid #00ff66;
    padding: 12px;
    margin-bottom: 15px;
    background: #111;
}

.solution {
    display: none;
    background: #000;
    border: 1px solid #00ff66;
    padding: 10px;
    margin-top: 10px;
    white-space: pre-line;
}

/* ===========================
   PROGRESS BARS
=========================== */

#alphaProgress, #betaProgress {
    font-weight: bold;
    color: #00ff66;
    font-size: 18px;
}

/* ===========================
   COUNTDOWN STATUS
=========================== */

#countdownStatus {
    font-size: 18px;
    color: #b6ffb6;
    margin-bottom: 10px;
}