:root {
    --bg-color: #030712;
    --panel-bg: rgba(17, 24, 39, 0.85);
    --border-color: rgba(255, 255, 255, 0.1);
}

body.privacy-bg {
    background-color: var(--bg-color);
    margin: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
}

.layout-grid {
    display: flex;
    height: calc(100vh - 60px);
    width: 100vw;
}

.side-panel {
    width: 350px;
    background: var(--panel-bg);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 10;
}

.globe-panel {
    flex: 1;
    position: relative;
    background: radial-gradient(circle at center, #1e293b 0%, #030712 100%);
    overflow: hidden;
    cursor: grab;
}
.globe-panel:active { cursor: grabbing; }

#globeCanvas {
    position: absolute;
    top: 0; left: 0;
}

.globe-overlay-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
}

.feed {
    font-family: monospace;
    font-size: 0.8rem;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.feed-item {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    animation: fadein 0.5s;
}
.feed-item.alert-high { color: #f87171; }
.feed-item.alert-med { color: #facc15; }
.feed-item.alert-low { color: #38bdf8; }

.info-card {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.globe-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.9);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

@keyframes fadein {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
