/* EIRENICON TACTICAL STYLES v5.4.2 - FULL SOURCE */
:root {
    --bg: rgba(5, 5, 5, 0.85);
    --accent: #00f2ff;
    --border: #333;
    --header-bg: rgba(20, 20, 25, 0.95);
}

body { margin: 0; padding: 0; background: #000; font-family: 'Courier New', monospace; overflow: hidden; }

#map { position: absolute; top: 0; left: 0; width: 100vw; height: calc(100vh - 30px); z-index: 1; }

/* TACTICAL FLOATING PANES */
.tactical-pane {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.pane-header {
    background: var(--header-bg);
    padding: 8px 12px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: bold;
    cursor: move;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pane-content { padding: 15px; color: #fff; }

/* REUSABLE UI ELEMENTS */
.chassis-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px;
    width: 100%;
    margin-bottom: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.7rem;
    transition: 0.2s;
}
.chassis-btn:hover { background: var(--accent); color: #000; }

#tactical-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: #000;
    border-top: 1px solid var(--border);
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    z-index: 10001;
}

/* Legend Pulse for FIRMS Kinetic Data */
.legend-pulse {
    height: 8px;
    width: 8px;
    background: #ff0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
