/**
 * OZARK ORACLE - Nexus Map/Mobile Styles
 * Page-specific CSS for vis.js network visualization and nexus mobile view
 *
 * Used by: nexus_map.html, nexus_mobile.html
 * Requires: quantum-theme.css loaded first
 */

/* === VIS.JS NETWORK CONTAINER === */
#mynetwork {
    width: 100vw;
    height: 100vh;
    border: 1px solid #444;
}

/* === NEXUS LEGEND (vis.js) === */
.nexus-legend {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border: 1px solid #555;
}

.nexus-legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.nexus-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.nexus-dot-gold { background: #FFD700; }
.nexus-dot-blue { background: #97C2FC; }
.nexus-dot-red { background: #FB7E81; }
.nexus-dot-green { background: #7BE141; }
.nexus-dot-yellow { background: #FFFF00; }

/* === MOBILE NEXUS HEADER === */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #111;
    border-bottom: 2px solid #d4af37;
    padding: 15px;
    z-index: 1000;
}

.nexus-header h1 {
    color: #d4af37;
    font-size: var(--text-lg);
    margin-bottom: 5px;
}

.nexus-stats {
    font-size: var(--text-sm);
    color: #888;
}

.nexus-stats span {
    color: #d4af37;
}

/* === TARGET LIST === */
.target-list {
    margin-top: 90px;
    padding: 10px;
}

.target-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.target-card.high-priority {
    border-left: 4px solid #ff4444;
}

.target-name {
    color: #d4af37;
    font-size: var(--text-lg);
    margin-bottom: 5px;
}

.target-category {
    color: #888;
    font-size: var(--text-sm);
    margin-bottom: 8px;
}

.connection-count {
    color: #00ff00;
    font-size: var(--text-sm);
}

.target-note {
    color: #ccc;
    font-size: var(--text-sm);
    margin-top: 8px;
    line-height: 1.4;
}

/* === FILTER BUTTONS === */
.filters {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid #333;
    padding: 10px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    z-index: 1000;
}

.filter-btn {
    background: #222;
    border: 1px solid #444;
    color: #888;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: var(--text-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn.active {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* === LOADING INDICATOR === */
.loading {
    text-align: center;
    padding: 20px;
    color: #888;
}

.loading--error {
    color: #ff4444;
}
