/* ================================================
   FLOOD INTELLIGENCE — CSS GRID TACTICAL LAYOUT
   Data-Layer / Cardless / Ghost-in-the-Shell
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
    --cyan: #00aaff;
    --cyan-glow: rgba(0, 170, 255, 0.35);
    --cyan-dim: rgba(0, 170, 255, 0.12);
    --text: rgba(230, 240, 255, 0.92);
    --text-muted: rgba(180, 200, 220, 0.4);
    --glass: rgba(0, 0, 0, 0.3);
    --blur: blur(20px);
    --mono: 'JetBrains Mono', 'Space Mono', 'Courier New', monospace;
    --bracket: 18px;
    --bracket-w: 1px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --panel-w: 260px;
    --panel-pad: 24px;
    --grid-gap: 20px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow: hidden;
    font-family: var(--mono);
    background: #010409;
    color: var(--text);
}

/* ============================================
   GRID SHELL — master layout container
   3 columns × 2 rows, fixed over the viewport
   ============================================ */
#grid-shell {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: var(--panel-w) 1fr var(--panel-w);
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "left   center  right"
        "bottom bottom  bottom";
    gap: var(--grid-gap);
    padding: var(--grid-gap);
    pointer-events: none;
    overflow: visible;   /* allow right panel to slide in from off-screen */
}

/* Re-enable pointer events on actual panels */
#grid-shell > * { pointer-events: auto; }

/* ---------- CORNER BRACKET FRAME ---------- */
.bracket-frame { position: absolute; inset: 0; pointer-events: none; }
.corner {
    position: absolute;
    width: var(--bracket);
    height: var(--bracket);
    border-color: var(--cyan);
    border-style: solid;
    border-width: 0;
    opacity: 0.45;
    transition: opacity 0.4s;
}
.ghost-panel:hover .corner { opacity: 0.85; }
.corner.tl { top: 0;    left: 0;   border-top-width: var(--bracket-w); border-left-width: var(--bracket-w); }
.corner.tr { top: 0;    right: 0;  border-top-width: var(--bracket-w); border-right-width: var(--bracket-w); }
.corner.bl { bottom: 0; left: 0;   border-bottom-width: var(--bracket-w); border-left-width: var(--bracket-w); }
.corner.br { bottom: 0; right: 0;  border-bottom-width: var(--bracket-w); border-right-width: var(--bracket-w); }

/* ---------- GHOST PANEL (shared — no solid bg, no box borders) ---------- */
.ghost-panel {
    position: relative;
    background: var(--glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: none;
    box-shadow: none;
    padding: var(--panel-pad);
}

/* Panel tag / title — consistent across all panels */
.panel-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
}

/* ============================================
   LEFT PANEL — grid-area: left (col 1, rows 1-2)
   ============================================ */
.panel-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    animation: fadeSlideLeft 0.9s var(--ease) both;
}
@keyframes fadeSlideLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

/* Thin right-edge line (gradient) */
.panel-left::after {
    content: '';
    position: absolute;
    top: 15%; bottom: 15%; right: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--cyan-dim), transparent);
}

/* ============================================
   RIGHT PANEL — grid-area: right (col 3, rows 1-2)
   Hidden by default, slides in via JS .visible
   ============================================ */
.panel-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
#map-hud.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s var(--ease), visibility 0s linear 0s;
}

/* Thin left-edge line (gradient) */
.panel-right::after {
    content: '';
    position: absolute;
    top: 15%; bottom: 15%; left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--cyan-dim), transparent);
}
.panel-right::-webkit-scrollbar { width: 0; }

/* ============================================
   BOTTOM PANEL — grid-area: bottom (all 3 cols, row 2)
   ============================================ */
.panel-bottom {
    grid-area: bottom;
    padding: 10px 40px 10px;
    animation: fadeSlideUp 0.8s 0.3s var(--ease) both;
}
@keyframes fadeSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Thin top-edge line */
.panel-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
}

/* ============================================
   FORM ELEMENTS (Left Panel)
   ============================================ */
.input-cluster { display: flex; flex-direction: column; gap: 2px; }
.input-row { display: flex; gap: 8px; }
.input-half { flex: 1; }

label {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 10px 0 4px;
}

input {
    width: 100%;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    border-radius: 0;
    transition: border-color 0.3s;
}
input:focus {
    outline: none;
    border-bottom-color: var(--cyan);
}

/* Tactical select dropdown */
select {
    width: 100%;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2300aaff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
select:focus {
    outline: none;
    border-bottom-color: var(--cyan);
}
select option {
    background: #0a0f1a;
    color: var(--text);
    font-family: var(--mono);
}

/* Scan button */
#scan-btn {
    width: 100%;
    padding: 11px 0;
    margin-top: 18px;
    background: transparent;
    border: 1px solid rgba(0, 170, 255, 0.25);
    color: var(--cyan);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
#scan-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,170,255,0.08), rgba(0,255,200,0.04));
    opacity: 0;
    transition: opacity 0.35s;
}
#scan-btn:hover:not(:disabled)::before { opacity: 1; }
#scan-btn:hover:not(:disabled) {
    border-color: var(--cyan);
    box-shadow: 0 0 18px var(--cyan-glow);
    color: #fff;
}
#scan-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Uplink indicator */
#uplink-status {
    margin-top: auto;
    display: flex; align-items: center; gap: 7px;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.uplink-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 6px #00ff88;
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.uplink-ping { margin-left: auto; color: #00ff88; font-weight: 600; }

/* ============================================
   CONFIDENCE GAUGE (Right Panel)
   ============================================ */
.gauge-wrap {
    position: relative;
    width: 100px; height: 100px;
    margin: 4px auto 10px;
}
.gauge-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.g-track { fill: none; stroke: rgba(255,255,255,0.04); stroke-width: 2; }
.g-fill {
    fill: none;
    stroke: url(#gGrad);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 264;
    stroke-dashoffset: 264;  /* starts empty — JS sets dynamically */
    transition: stroke-dashoffset 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gauge-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.gauge-num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}
.gauge-sub {
    font-size: 8px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted);
}

/* ============================================
   METRICS (Right Panel) — icon + data, no card bg
   ============================================ */
.metric-row {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.metric-row:last-of-type { border-bottom: none; }
.m-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
.m-data { display: flex; flex-direction: column; gap: 1px; }
.m-label {
    font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted); font-weight: 400;
}
.m-value { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.1; }

/* ============================================
   RISK BAR (Right Panel) — gradient pulse
   ============================================ */
.risk-block {
    display: flex; align-items: center; gap: 10px;
    margin-top: auto; padding-top: 10px;
}
.risk-label {
    font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
}
.risk-track {
    flex: 1; height: 3px;
    background: rgba(255,255,255,0.04);
    border-radius: 3px; overflow: hidden;
}
.risk-fill {
    width: 78%; height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ff4444, #ff2222);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255,68,68,0.5);
    animation: riskPulse 2.5s ease-in-out infinite;
}
@keyframes riskPulse {
    0%,100% { opacity: 0.7; box-shadow: 0 0 6px rgba(255,68,68,0.3); }
    50%     { opacity: 1;   box-shadow: 0 0 14px rgba(255,68,68,0.6); }
}
.risk-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    color: #ff4444; text-shadow: 0 0 10px rgba(255,68,68,0.5);
}

/* ============================================
   TELEMETRY (Bottom Panel)
   ============================================ */
.tele-head {
    display: flex; align-items: center; gap: 7px;
    font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.tele-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--cyan); box-shadow: 0 0 5px var(--cyan);
    animation: blink 2s 0.5s infinite;
}
.tele-title { font-weight: 600; }
.tele-clock { margin-left: auto; color: var(--cyan); opacity: 0.5; }
.tele-body {
    font-size: 11px; line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-height: 56px; overflow-y: auto;
}
.tele-body::-webkit-scrollbar { width: 0; }
.log-default { color: #00ff88; opacity: 0.7; }

#status-box {
    display: none;
    padding: 6px 0 2px;
    font-size: 11px; line-height: 1.6; color: #0f0;
    border-left: 1px solid rgba(0,255,0,0.3);
    padding-left: 10px; margin-top: 4px;
    max-height: 140px;
    overflow-y: auto;
    scroll-behavior: smooth;
}
#status-box::-webkit-scrollbar { width: 3px; }
#status-box::-webkit-scrollbar-track { background: transparent; }
#status-box::-webkit-scrollbar-thumb { background: rgba(0, 170, 255, 0.2); border-radius: 3px; }

/* ============================================
   CANVAS / VIGNETTE / MAP (outside grid)
   ============================================ */
canvas { z-index: 1; }
canvas.dimmed { pointer-events: none; }

#zoom-vignette {
    position: fixed; inset: 0; z-index: 4;
    pointer-events: none; opacity: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,10,30,0.6) 70%, rgba(0,0,0,0.95) 100%);
}

#map2d { position: fixed; inset: 0; z-index: 5; opacity: 0; visibility: hidden; }
#map2d.active { visibility: visible; }

@keyframes scanLinePass { 0%{transform:translateY(-100vh)} 100%{transform:translateY(100vh)} }
#map2d::after {
    content: ''; position: absolute; inset: 0; z-index: 6;
    pointer-events: none; height: 100vh; opacity: 0; transition: opacity 0.3s;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,170,255,0.06) 48%, rgba(0,170,255,0.12) 50%, rgba(0,170,255,0.06) 52%, transparent 100%);
}
#map2d.scan-active::after { opacity: 1; animation: scanLinePass 2s ease-in-out 1; }

/* Leaflet dark overrides */
#map2d .leaflet-control-attribution { background: rgba(0,0,0,0.5) !important; color: rgba(255,255,255,0.25) !important; font-size: 9px; }
#map2d .leaflet-control-attribution a { color: rgba(255,255,255,0.35) !important; }
#map2d .leaflet-control-zoom a { background: var(--glass) !important; color: var(--cyan) !important; border: none !important; backdrop-filter: var(--blur); }
#map2d .leaflet-control-zoom a:hover { background: rgba(0,100,200,0.3) !important; }

/* ============================================
   RETURN BUTTON (outside grid, fixed position)
   ============================================ */
#return-globe-btn {
    position: fixed;
    bottom: calc(var(--grid-gap) + 80px);
    right: calc(var(--panel-w) + var(--grid-gap) * 2 + 8px);
    z-index: 26;
    padding: 9px 16px;
    background: var(--glass);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(0,170,255,0.15);
    border-radius: 4px;
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 9px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
    display: none;
    transition: all 0.3s;
}
#return-globe-btn:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 14px var(--cyan-glow);
}
#return-globe-btn.visible { display: flex; align-items: center; gap: 6px; }

/* ============================================
   INTEL DOSSIER TRIGGER (top-right HUD)
   ============================================ */
#about-btn {
    position: fixed;
    top: var(--grid-gap);
    right: var(--grid-gap);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid rgba(0, 170, 255, 0.12);
    border-radius: 3px;
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
#about-btn:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 18px var(--cyan-glow), inset 0 0 8px rgba(0, 170, 255, 0.04);
    color: #fff;
}
.intel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: intelPulse 2.5s infinite;
}
@keyframes intelPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--cyan); }
    50%      { opacity: 0.35; box-shadow: 0 0 2px var(--cyan); }
}

/* ============================================
   CLASSIFIED INTEL DOSSIER — Overlay + Panel
   ============================================ */
.dossier-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 2, 8, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}
.dossier-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--ease), visibility 0s linear 0s;
}

.dossier-panel {
    position: relative;
    width: min(560px, 92vw);
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px 28px 20px;
    background: rgba(6, 10, 20, 0.95);
    border: 1px solid rgba(0, 170, 255, 0.18);
    border-radius: 4px;
    box-shadow:
        0 0 60px rgba(0, 170, 255, 0.06),
        0 0 1px rgba(0, 170, 255, 0.3),
        inset 0 1px 0 rgba(0, 170, 255, 0.05);
    animation: dossierFlickerIn 0.5s ease-out;
}
.dossier-panel::-webkit-scrollbar { width: 0; }

@keyframes dossierFlickerIn {
    0%   { opacity: 0; transform: translateY(10px); }
    20%  { opacity: 0.7; }
    35%  { opacity: 0.3; }
    55%  { opacity: 0.8; }
    75%  { opacity: 0.5; }
    100% { opacity: 1; transform: translateY(0); }
}

/* CRT scan line */
.dossier-scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.25), transparent);
    animation: scanDossier 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes scanDossier {
    0%   { top: 0; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Header */
.dossier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.dossier-classification {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dossier-badge {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff4444;
    padding: 2px 8px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 2px;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
}
.dossier-id {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Close */
.dossier-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: all 0.2s;
}
.dossier-close:hover {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.4);
}

/* Title bar */
.dossier-title-bar {
    text-align: center;
    margin: 14px 0 22px;
}
.dossier-bracket {
    font-size: 18px;
    color: rgba(0, 170, 255, 0.2);
    font-weight: 300;
}
.dossier-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(0, 170, 255, 0.3);
    margin: 0 8px;
}

/* Sections */
.dossier-section { margin-bottom: 4px; }

.dossier-section-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
    opacity: 0.85;
}
.tag-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 4px var(--cyan);
}

/* Key-value data fields */
.dossier-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dossier-field {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}
.dossier-field:last-child { border-bottom: none; }

.field-key {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    white-space: nowrap;
}
.field-val {
    font-size: 10px;
    line-height: 1.6;
    color: rgba(210, 225, 240, 0.7);
}
.field-highlight {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0, 170, 255, 0.2);
}

/* Status active dot (inside field) */
.status-active {
    display: inline-block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 6px #00ff88;
    margin-right: 4px;
    vertical-align: middle;
    animation: blink 2s infinite;
}

/* Divider */
.dossier-divider {
    height: 1px;
    margin: 16px 0;
    background: linear-gradient(90deg, transparent 5%, rgba(0, 170, 255, 0.1) 30%, rgba(0, 170, 255, 0.1) 70%, transparent 95%);
}

/* Terminal command links */
.dossier-commands {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dossier-cmd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 170, 255, 0.03);
    border: 1px solid rgba(0, 170, 255, 0.08);
    border-radius: 3px;
    text-decoration: none;
    font-family: var(--mono);
    transition: all 0.25s var(--ease);
}
.dossier-cmd:hover {
    background: rgba(0, 170, 255, 0.06);
    border-color: rgba(0, 170, 255, 0.25);
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.08);
}
.cmd-prompt {
    color: #00ff88;
    font-size: 12px;
    font-weight: 700;
}
.cmd-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.cmd-target {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--cyan);
    text-transform: uppercase;
}
.cmd-arrow {
    margin-left: auto;
    color: rgba(0, 170, 255, 0.3);
    font-size: 12px;
    transition: transform 0.2s, color 0.2s;
}
.dossier-cmd:hover .cmd-arrow {
    transform: translateX(3px);
    color: var(--cyan);
}

/* Footer */
.dossier-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.025);
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
}
.dossier-footer-dot {
    font-size: 5px;
    color: rgba(0, 170, 255, 0.25);
}

