Dateien
AegisSight-Globe/static/css/globe.css
Claude Dev a0a8909c28 fix: Layer-Panel scrollbar bei zu vielen Layern
max-height + overflow-y auf .layer-panel, damit ANSICHT und SATELLITENBILDER erreichbar bleiben.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 21:13:04 +01:00

891 Zeilen
23 KiB
CSS

/* AegisSight Globe — Taktisches Dark Theme */
:root {
--bg-primary: #0b1121;
--bg-panel: rgba(11, 17, 33, 0.92);
--border: rgba(0, 255, 136, 0.15);
--accent: #00ff88;
--accent-dim: rgba(0, 255, 136, 0.4);
--text: #e8eaf0;
--text-dim: rgba(255,255,255,0.5);
--font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; background: var(--bg-primary); color: var(--text); font-family: var(--font-mono); }
/* === Cesium Container === */
#cesiumContainer { position: absolute; inset: 0; z-index: 1; }
/* Cesium UI ausblenden */
.cesium-viewer-toolbar,
.cesium-viewer-animationContainer,
.cesium-viewer-timelineContainer,
.cesium-viewer-fullscreenContainer,
.cesium-viewer-geocoderContainer,
.cesium-viewer-bottom { display: none !important; }
.cesium-credit-logoContainer { opacity: 0.3; }
/* === Header === */
#header {
position: fixed; top: 0; left: 0; right: 0; height: 48px; z-index: 100;
display: flex; align-items: center; padding: 0 16px; gap: 16px;
background: var(--bg-panel); border-bottom: 1px solid var(--border);
backdrop-filter: blur(12px);
}
.header-brand { display: flex; align-items: center; gap: 8px; }
.header-title { font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.header-stats { text-align: center; font-size: 11px; color: var(--text-dim); letter-spacing: 1px; }
.header-actions { display: flex; gap: 8px; }
.header-btn {
background: none; border: 1px solid var(--border); border-radius: 4px;
color: var(--text); padding: 4px 8px; cursor: pointer; transition: all 0.2s;
}
.header-btn:hover { border-color: var(--accent); color: var(--accent); }
/* === Layer Panel === */
.layer-panel {
position: fixed; top: 56px; left: 12px; z-index: 100;
width: 240px; background: var(--bg-panel); border: 1px solid var(--border);
border-radius: 8px; padding: 12px; backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
max-height: calc(100vh - 88px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.panel-title {
font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--accent);
margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.panel-section { display: flex; flex-direction: column; gap: 4px; }
.panel-divider { height: 1px; background: var(--border); margin: 8px 0; }
.layer-toggle {
display: flex; align-items: center; gap: 8px; padding: 6px 8px;
border-radius: 4px; cursor: pointer; transition: background 0.15s;
}
.layer-toggle:hover { background: rgba(255,255,255,0.04); }
.layer-toggle input[type="checkbox"] {
accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0;
}
.layer-dot {
width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.dot-flights { background: var(--accent); }
.dot-ships { background: #4499ff; }
.dot-quakes { background: #ff4444; }
.dot-gdelt { background: #ff8800; }
.dot-daynight { background: #8866cc; }
.dot-labels { background: #aaaaaa; }
.layer-name { font-size: 13px; color: var(--text); flex: 1; }
.layer-count { font-size: 12px; color: var(--text-dim); }
.panel-coords {
font-size: 12px; color: var(--accent); letter-spacing: 0.5px;
padding: 8px 0 0; text-align: center;
}
/* === Bottom Bar === */
#bottom-bar {
position: fixed; bottom: 0; left: 0; right: 0; height: 32px; z-index: 100;
display: flex; align-items: center; justify-content: center;
background: var(--bg-panel); border-top: 1px solid var(--border);
backdrop-filter: blur(8px);
}
.bottom-stats { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }
/* === Cesium InfoBox Override === */
.cesium-infoBox { background: var(--bg-panel) !important; border: 1px solid var(--border) !important; }
.cesium-infoBox-title { color: var(--accent) !important; font-family: var(--font-mono) !important; }
/* === InfoBox (Entity-Details bei Klick) === */
.cesium-infoBox {
background: var(--bg-panel) !important;
border: 1px solid var(--border) !important;
border-radius: 8px !important;
box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}
.cesium-infoBox-title {
color: var(--accent) !important;
font-family: var(--font-mono) !important;
font-size: 14px !important;
padding: 8px 12px !important;
background: rgba(0,255,136,0.08) !important;
}
.cesium-infoBox-iframe {
background: var(--bg-primary) !important;
}
.cesium-selection-wrapper {
border-color: var(--accent) !important;
}
/* === Loading Indicator === */
.layer-loading {
display: none;
height: 2px;
background: var(--accent);
position: relative;
overflow: hidden;
border-radius: 1px;
margin: 4px 0 0;
}
.layer-loading.active {
display: block;
}
.layer-loading::after {
content: '';
position: absolute;
left: -40%;
width: 40%;
height: 100%;
background: linear-gradient(90deg, transparent, #00ff88, transparent);
animation: layer-loading-slide 1s ease-in-out infinite;
}
@keyframes layer-loading-slide {
0% { left: -40%; }
100% { left: 100%; }
}
.layer-status {
font-size: 9px;
color: var(--text-dim);
margin-top: 2px;
display: none;
}
.layer-status.active {
display: block;
}
/* === Neue Layer-Dots === */
.dot-monitor { background: #ff2222; box-shadow: 0 0 4px rgba(255,34,34,0.5); }
.dot-satellites { background: #ff4444; }
.dot-disasters { background: #ff8800; }
/* === Visual Mode Buttons === */
.vmode-btn {
padding: 6px 10px;
font-family: var(--font-mono);
font-size: 11px;
font-weight: 700;
letter-spacing: 1px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 3px;
color: var(--text-dim);
cursor: pointer;
transition: all 0.2s;
}
.vmode-btn:hover { border-color: var(--accent); color: var(--text); }
.vmode-btn.active { background: rgba(0,255,136,0.15); border-color: var(--accent); color: var(--accent); }
/* === Visual Overlay (CRT Scanlines) === */
.visual-overlay {
position: fixed;
inset: 0;
z-index: 50;
pointer-events: none;
}
.vmode-crt-overlay {
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0, 0, 0, 0.08) 2px,
rgba(0, 0, 0, 0.08) 4px
);
box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.3);
}
/* === Night Vision Mode === */
.vmode-nvg {
filter: saturate(0) brightness(1.2) contrast(1.1);
}
.vmode-nvg .cesium-viewer { mix-blend-mode: normal; }
.vmode-nvg::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 255, 0, 0.08);
pointer-events: none;
z-index: 40;
mix-blend-mode: multiply;
}
/* === FLIR Thermal Mode === */
.vmode-flir {
filter: saturate(0) invert(1) contrast(1.3) brightness(0.9);
}
.vmode-flir::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,100,0,0.05), rgba(255,0,100,0.05));
pointer-events: none;
z-index: 40;
}
/* === CRT Mode === */
.vmode-crt {
filter: contrast(1.1) brightness(0.95);
}
.vmode-crt::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.4) 100%);
pointer-events: none;
z-index: 40;
}
/* === Tooltip-Styling === */
.layer-toggle[title]:hover::after,
.layer-name[title]:hover::after,
.vmode-btn[title]:hover::after {
content: attr(title);
position: absolute;
left: 110%;
top: 50%;
transform: translateY(-50%);
background: rgba(11, 17, 33, 0.95);
border: 1px solid var(--border);
border-radius: 4px;
padding: 6px 10px;
font-size: 10px;
color: var(--text);
white-space: nowrap;
z-index: 200;
pointer-events: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
max-width: 280px;
white-space: normal;
line-height: 1.4;
}
.layer-toggle, .layer-name, .vmode-btn { position: relative; }
/* === Rechte Sidebar === */
.sidebar-right {
position: fixed;
top: 48px;
right: 0;
bottom: 32px;
width: 280px;
z-index: 100;
display: flex;
transition: transform 0.3s ease;
}
.sidebar-right.collapsed {
transform: translateX(280px);
}
.sidebar-right.collapsed .sidebar-toggle {
transform: translateX(-32px);
}
.sidebar-toggle {
position: absolute;
left: -28px;
top: 12px;
width: 28px;
height: 36px;
background: var(--bg-panel);
border: 1px solid var(--border);
border-right: none;
border-radius: 6px 0 0 6px;
color: var(--text);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
z-index: 101;
}
.sidebar-toggle:hover { color: var(--accent); border-color: var(--accent); }
.sidebar-inner {
flex: 1;
background: var(--bg-panel);
border-left: 1px solid var(--border);
backdrop-filter: blur(12px);
display: flex;
flex-direction: column;
overflow: hidden;
}
.sidebar-search-wrap {
padding: 10px;
border-bottom: 1px solid var(--border);
}
.sidebar-search {
width: 100%;
padding: 6px 10px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-family: var(--font-mono);
font-size: 11px;
outline: none;
}
.sidebar-search:focus { border-color: var(--accent); }
.sidebar-search::placeholder { color: var(--text-dim); }
.sidebar-content {
flex: 1;
overflow-y: auto;
padding: 4px 0;
}
.sidebar-content::-webkit-scrollbar { width: 4px; }
.sidebar-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
/* Sections */
.sb-section { border-bottom: 1px solid rgba(255,255,255,0.04); }
.sb-header {
display: flex;
align-items: center;
gap: 6px;
padding: 8px 12px;
cursor: pointer;
transition: background 0.15s;
}
.sb-header:hover { background: rgba(255,255,255,0.04); }
.sb-header-count { cursor: default; }
.sb-chevron {
font-size: 10px;
color: var(--text-dim);
transition: transform 0.2s;
width: 12px;
text-align: center;
}
.sb-title {
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--text);
flex: 1;
}
.sb-badge {
font-size: 11px;
color: var(--accent);
background: rgba(0,255,136,0.1);
padding: 1px 6px;
border-radius: 8px;
font-family: var(--font-mono);
}
/* Items */
.sb-list { padding: 0 4px 4px; }
.sb-item {
display: flex;
align-items: flex-start;
gap: 6px;
padding: 4px 8px;
border-radius: 3px;
cursor: pointer;
transition: background 0.15s;
}
.sb-item:hover { background: rgba(0,255,136,0.06); }
.sb-dot {
width: 6px;
height: 6px;
border-radius: 50%;
flex-shrink: 0;
margin-top: 4px;
}
.sb-item-text { min-width: 0; flex: 1; }
.sb-item-name {
font-size: 13px;
color: var(--text);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sb-item-sub {
font-size: 11px;
color: var(--text-dim);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sb-more {
font-size: 9px;
color: var(--text-dim);
padding: 4px 8px;
text-align: center;
}
.sb-empty {
padding: 20px;
text-align: center;
font-size: 11px;
color: var(--text-dim);
}
/* === Lage-Selector === */
.header-lage { display: flex; align-items: center; }
.lage-select {
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--accent);
font-family: var(--font-mono);
font-size: 13px;
padding: 6px 10px;
cursor: pointer;
max-width: 300px;
outline: none;
}
.lage-select:hover { border-color: var(--accent); }
.lage-select option {
background: var(--bg-primary);
color: var(--text);
}
/* === InfoBox: Links neben dem Layer-Panel === */
.cesium-viewer-infoBoxContainer {
position: absolute !important;
top: 52px !important;
left: 254px !important;
right: auto !important;
transform: none !important;
max-width: 420px !important;
width: 420px !important;
max-height: 60vh !important;
z-index: 150 !important;
}
.cesium-infoBox {
max-height: 60vh !important;
overflow-y: auto !important;
border-radius: 8px !important;
box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}
/* === Wetter Dot === */
.dot-weather { background: #44bbff; }
.dot-crosshairs { background: #ffffff; }
/* === Search Bar === */
.header-search { position: relative; }
.globe-search {
width: 200px;
padding: 6px 12px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-family: var(--font-mono);
font-size: 11px;
outline: none;
transition: width 0.3s, border-color 0.2s;
}
.globe-search:focus { width: 300px; border-color: var(--accent); }
.globe-search::placeholder { color: var(--text-dim); }
.search-results {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-panel);
border: 1px solid var(--border);
border-radius: 0 0 6px 6px;
max-height: 200px;
overflow-y: auto;
z-index: 200;
}
.search-item {
padding: 6px 10px;
cursor: pointer;
font-size: 11px;
color: var(--text);
transition: background 0.15s;
}
.search-item:hover { background: rgba(0,255,136,0.08); }
.search-empty { padding: 8px 10px; font-size: 11px; color: var(--text-dim); }
/* === City Quick-Links === */
.city-links {
position: fixed;
top: 48px;
left: 254px;
right: 290px;
z-index: 90;
display: flex;
gap: 4px;
padding: 4px 8px;
overflow-x: auto;
scrollbar-width: none;
}
.city-links::-webkit-scrollbar { display: none; }
.city-btn {
padding: 2px 8px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 10px;
color: var(--text-dim);
font-family: var(--font-mono);
font-size: 9px;
cursor: pointer;
white-space: nowrap;
transition: all 0.2s;
}
.city-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,255,136,0.06); }
/* === Crosshairs Overlay === */
.crosshairs-overlay {
position: fixed;
inset: 0;
z-index: 60;
pointer-events: none;
}
.ch-h, .ch-v {
position: absolute;
background: rgba(0, 255, 136, 0.15);
}
.ch-h { left: 0; right: 0; top: 50%; height: 1px; }
.ch-v { top: 0; bottom: 0; left: 50%; width: 1px; }
.ch-center {
position: absolute;
top: 50%; left: 50%;
width: 8px; height: 8px;
transform: translate(-50%, -50%);
border: 1px solid rgba(0, 255, 136, 0.5);
border-radius: 50%;
}
.ch-ring {
position: absolute;
top: 50%; left: 50%;
border: 1px solid rgba(0, 255, 136, 0.08);
border-radius: 50%;
}
.ch-ring-1 { width: 200px; height: 200px; transform: translate(-50%, -50%); }
.ch-ring-2 { width: 400px; height: 400px; transform: translate(-50%, -50%); }
.ch-ring-3 { width: 600px; height: 600px; transform: translate(-50%, -50%); }
/* === Imagery Selector === */
.imagery-select {
width: 100%;
padding: 6px 8px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-family: var(--font-mono);
font-size: 12px;
cursor: pointer;
outline: none;
}
.imagery-select:hover { border-color: var(--accent); }
.imagery-select option { background: var(--bg-primary); color: var(--text); }
.dot-military { background: #ff2222; box-shadow: 0 0 4px rgba(255,34,34,0.5); }
.dot-cables { background: #00ccff; }
.dot-infra { background: #ffdd00; }
.dot-iss { background: #ff4444; box-shadow: 0 0 6px rgba(255,68,68,0.6); }
.dot-terminator { background: #ff8800; }
.dot-timezones { background: #8888ff; }
/* === Ship Filters (Submenu) === */
.ship-filters {
padding: 6px 8px 8px 28px;
margin-left: 12px;
border-left: 2px solid rgba(0, 255, 136, 0.2);
background: rgba(255,255,255,0.02);
border-radius: 0 4px 4px 0;
}
/* === Overpass Turbo === */
.dot-overpass { background: #ff9800; }
.overpass-panel {
position: fixed;
top: 56px;
right: 12px;
width: 360px;
max-height: calc(100vh - 100px);
overflow-y: auto;
background: var(--bg-panel);
border: 1px solid var(--border);
border-radius: 8px;
backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
max-height: calc(100vh - 88px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
z-index: 100;
padding: 14px;
}
#overpass-editor {
width: 100%;
min-height: 100px;
background: rgba(0,0,0,0.3);
color: var(--accent);
font-family: var(--font-mono);
font-size: 12px;
border: 1px solid var(--border);
border-radius: 4px;
padding: 8px;
resize: vertical;
line-height: 1.5;
}
#overpass-editor:focus {
border-color: var(--accent);
outline: none;
box-shadow: 0 0 8px rgba(0,255,136,0.15);
}
#overpass-editor::placeholder { color: var(--text-dim); opacity: 0.5; }
.overpass-cat-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.overpass-cat-tab {
padding: 4px 8px;
font-size: 10px;
font-family: var(--font-mono);
letter-spacing: 0.5px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 3px;
color: var(--text-dim);
cursor: pointer;
transition: all 0.15s;
}
.overpass-cat-tab:hover { border-color: rgba(0,255,136,0.3); color: var(--text); }
.overpass-cat-tab.active {
color: var(--accent);
border-color: var(--accent);
background: rgba(0,255,136,0.1);
}
.overpass-template-btn {
display: block;
width: 100%;
text-align: left;
padding: 5px 8px;
margin: 1px 0;
background: transparent;
border: 1px solid transparent;
color: var(--text);
font-family: var(--font-mono);
font-size: 12px;
cursor: pointer;
border-radius: 3px;
transition: all 0.1s;
}
.overpass-template-btn:hover {
background: rgba(0,255,136,0.06);
border-color: var(--border);
}
.overpass-exec-btn {
width: 100%;
padding: 10px;
background: rgba(0,255,136,0.12);
border: 1px solid var(--accent);
color: var(--accent);
font-family: var(--font-mono);
font-size: 12px;
font-weight: 700;
border-radius: 4px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 2px;
transition: all 0.15s;
}
.overpass-exec-btn:hover { background: rgba(0,255,136,0.22); }
.overpass-exec-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.overpass-panel::-webkit-scrollbar { width: 4px; }
.overpass-panel::-webkit-scrollbar-track { background: transparent; }
.overpass-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
/* === VLM Bildanalyse === */
.dot-vlm { background: #e040fb; }
.vlm-panel-right {
position: fixed;
top: 56px;
right: 12px;
width: 320px;
max-height: calc(100vh - 100px);
overflow-y: auto;
background: var(--bg-panel);
border: 1px solid var(--border);
border-radius: 8px;
backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
max-height: calc(100vh - 88px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
z-index: 100;
padding: 14px;
}
.vlm-drop-zone {
border: 2px dashed var(--border);
border-radius: 8px;
padding: 28px 16px;
text-align: center;
color: var(--text-dim);
cursor: pointer;
transition: all 0.2s;
display: flex;
flex-direction: column;
align-items: center;
}
.vlm-drop-zone:hover,
.vlm-drop-active {
border-color: var(--accent);
background: rgba(0,255,136,0.04);
color: var(--accent);
}
.vlm-preview img {
max-width: 100%;
max-height: 180px;
object-fit: contain;
border-radius: 4px;
border: 1px solid var(--border);
margin: 8px 0 4px;
}
.vlm-loading {
text-align: center;
padding: 20px;
color: var(--accent);
font-size: 12px;
}
.vlm-spinner {
width: 28px;
height: 28px;
border: 2px solid var(--border);
border-top-color: var(--accent);
border-radius: 50%;
animation: vlm-spin 0.8s linear infinite;
margin: 0 auto 10px;
}
@keyframes vlm-spin { to { transform: rotate(360deg); } }
.vlm-object-card {
display: flex;
align-items: center;
gap: 8px;
padding: 8px;
border: 1px solid var(--border);
border-radius: 4px;
margin: 4px 0;
font-size: 12px;
transition: border-color 0.15s;
}
.vlm-object-card:hover { border-color: rgba(0,255,136,0.3); }
.vlm-confidence-high { color: #00ff88; }
.vlm-confidence-medium { color: #ff9800; }
.vlm-confidence-low { color: #ff5252; }
.vlm-badge-mil {
background: rgba(255,82,82,0.2);
color: #ff5252;
font-size: 9px;
font-weight: 700;
padding: 2px 5px;
border-radius: 2px;
letter-spacing: 0.5px;
flex-shrink: 0;
}
.vlm-panel-right::-webkit-scrollbar { width: 4px; }
.vlm-panel-right::-webkit-scrollbar-track { background: transparent; }
.vlm-panel-right::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
/* === GEOINT Tools === */
.dot-nightlights { background: #ffd740; box-shadow: 0 0 4px rgba(255,215,64,0.4); }
.dot-celltowers { background: #e040fb; }
.dot-firms { background: #ff4400; box-shadow: 0 0 4px rgba(255,68,0,0.4); }
.geoint-btn-row {
display: flex;
gap: 4px;
padding: 4px 8px;
}
.geoint-tool-btn {
flex: 1;
padding: 5px 8px;
font-family: var(--font-mono);
font-size: 10px;
font-weight: 700;
letter-spacing: 1px;
background: rgba(224, 64, 251, 0.08);
border: 1px solid rgba(224, 64, 251, 0.3);
border-radius: 3px;
color: #e040fb;
cursor: pointer;
transition: all 0.15s;
text-transform: uppercase;
}
.geoint-tool-btn:hover {
background: rgba(224, 64, 251, 0.18);
border-color: #e040fb;
}
.geoint-panel {
position: fixed;
top: 56px;
right: 12px;
width: 320px;
max-height: calc(100vh - 100px);
overflow-y: auto;
background: var(--bg-panel);
border: 1px solid rgba(224, 64, 251, 0.3);
border-radius: 8px;
backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
max-height: calc(100vh - 88px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
z-index: 100;
padding: 14px;
}
.geoint-panel::-webkit-scrollbar { width: 4px; }
.geoint-panel::-webkit-scrollbar-thumb { background: rgba(224,64,251,0.3); border-radius: 2px; }
.geoint-input {
width: 100%;
padding: 6px 8px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-family: var(--font-mono);
font-size: 12px;
outline: none;
margin-top: 2px;
}
.geoint-input:focus { border-color: #e040fb; }
.geoint-result-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px;
margin-top: 8px;
}
.geoint-result-item {
display: flex;
flex-direction: column;
gap: 2px;
padding: 6px 8px;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 4px;
}
.geoint-label {
font-size: 9px;
color: var(--text-dim);
letter-spacing: 0.5px;
text-transform: uppercase;
}
.geoint-value {
font-size: 13px;
color: var(--text);
font-weight: 600;
}
/* === VLM EXIF Card === */
.vlm-exif-card {
padding: 8px 10px;
background: rgba(224, 64, 251, 0.06);
border: 1px solid rgba(224, 64, 251, 0.2);
border-radius: 4px;
margin-bottom: 8px;
}