body { font-family: sans-serif; background: #1a1a1a; color: #eee; margin: 0; padding: 20px; }
h1 { color: #ff4d4d; text-align: center; text-transform: uppercase; border-bottom: 2px solid #333; padding-bottom: 10px; }
.einsatz-container { display: flex; flex-direction: column; gap: 15px; max-width: 1000px; margin: 0 auto; }
.einsatz-card { background: #2a2a2a; border-left: 5px solid #ff4d4d; padding: 15px; border-radius: 4px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.header { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #444; padding-bottom: 5px; }
.stichwort { font-size: 1.4em; font-weight: bold; color: #ff4d4d; }
.ort { font-size: 1.1em; color: #00ccff; }
.zeit { color: #888; font-size: 0.9em; }
.inhalt { line-height: 1.5; white-space: pre-wrap; margin: 10px 0; }
.footer-link { text-align: right; }
.footer-link a { color: #888; text-decoration: none; font-size: 0.8em; }
.footer-link a:hover { color: #fff; }
.no-data { text-align: center; color: #666; margin-top: 50px; }
.map-container {
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #444;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Alarm-Modus (Vollbild) */
.alarm-modus {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #8b0000; /* Dunkelrot */
    color: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
}

.alarm-stichwort {
    font-size: 5em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 5px solid white;
}

.alarm-ort {
    font-size: 3em;
    color: #ffda44;
    margin-bottom: 30px;
}

.alarm-text {
    font-size: 2em;
    line-height: 1.4;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 10px;
}

/* Animation für Aufmerksamkeit */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}
.alarm-modus { animation: blink 2s infinite; }

#uhr-container {
    text-align: center;
    background: #222;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #444;
    font-family: 'Courier New', Courier, monospace; /* Digitaler Look */
}

#uhrzeit {
    font-size: 3em;
    color: #ff4d4d; /* Feuerwehr-Rot */
    font-weight: bold;
}

#datum {
    font-size: 1.2em;
    color: #aaa;
}