/* Space|Craft NA Server DB - Stylesheet */

/* --- Design Tokens & Variables --- */
:root {
    --bg-dark: hsl(230, 20%, 6%);
    --bg-darker: hsl(230, 25%, 3%);
    --bg-sidebar: hsla(230, 25%, 5%, 0.85);
    
    --neon-cyan: hsl(180, 100%, 50%);
    --neon-blue: hsl(210, 100%, 55%);
    --neon-purple: hsl(270, 90%, 65%);
    --neon-green: hsl(145, 80%, 45%);
    --neon-orange: hsl(30, 95%, 50%);
    --neon-red: hsl(355, 90%, 55%);
    
    --text-main: hsl(220, 15%, 90%);
    --text-muted: hsl(225, 10%, 65%);
    --text-dark: hsl(230, 20%, 15%);
    
    --glass-bg: rgba(13, 14, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-hover: rgba(255, 255, 255, 0.12);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    --neon-glow: rgba(0, 242, 254, 0.15);
    
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Backgrounds --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) var(--bg-dark);
}

body {
    background-color: var(--bg-darker);
    font-family: var(--font-body);
    color: var(--text-main);
    min-height: 100vh;
    /* overflow-x: hidden removed — it suppresses table-container's internal scrollbar in Chromium */
    position: relative;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Ambient Background Animations */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Contain background within viewport */
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.15;
    z-index: -2;
    animation: starsMove 200s linear infinite;
}

.nebula-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 60% 40%, hsla(270, 70%, 40%, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 30% 70%, hsla(180, 80%, 40%, 0.08) 0%, transparent 45%);
    z-index: -1;
    filter: blur(80px);
    animation: nebulaRotate 120s linear infinite;
}

@keyframes starsMove {
    from { background-position: 0 0, 40px 60px, 130px 270px; }
    to { background-position: 550px 1100px, 390px 1110px, 680px 1370px; }
}

@keyframes nebulaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Premium Components: Glassmorphism --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.card {
    border-radius: 12px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 2px var(--neon-glow);
}

/* --- App Container Grid --- */
.app-container {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0;
    padding: 20px 20px 20px 0;
    min-height: 100vh;
}

@media (max-width: 1024px) {
    .app-container {
        grid-template-columns: minmax(0, 1fr);
        padding: 10px;
    }
}

/* --- Sidebar Styling --- */
.sidebar {
    padding: 20px 20px 20px 20px;
    margin: 0;
    height: calc(100vh - 40px);
    position: sticky;
    top: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--bg-sidebar);
}

@media (max-width: 1024px) {
    .sidebar {
        height: auto;
        position: relative;
        top: 0;
    }
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.sidebar-header h2 {
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.pulse-icon {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    animation: beaconPulse 2s infinite ease-in-out;
}

@keyframes beaconPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; text-shadow: 0 0 10px var(--neon-cyan); }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Input Fields & Dropdowns */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label i {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.input-wrapper, .select-wrapper {
    position: relative;
}

input[type="text"], select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="text"]:focus, select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
    background: rgba(0, 0, 0, 0.6);
}

/* Custom Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 2px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    color: var(--text-main);
    transition: color var(--transition-fast);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--neon-blue);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 8px rgba(0, 168, 255, 0.4);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.scrollable-filter-list {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
}

/* --- Buttons --- */
.btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
    margin-top: auto;
}

/* --- Main Dashboard Area --- */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.logo h1 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo .highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.logo .subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.demo {
    background-color: var(--neon-orange);
    box-shadow: 0 0 10px var(--neon-orange);
    animation: statusPulse 2s infinite ease-in-out;
}

.status-dot.live {
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* --- Sector & Station Banner --- */
.sector-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(13, 14, 25, 0.8) 0%, rgba(30, 18, 50, 0.4) 100%);
    border-left: 4px solid var(--neon-cyan);
    position: sticky;
    top: 80px;
    z-index: 99;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.sector-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sector-details h2 {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.banner-badge {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 0.7rem;
    font-family: var(--font-header);
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

#banner-sector-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Station Details Inside Banner */
.station-details {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.station-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.station-header i {
    font-size: 1.8rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

.station-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.station-header h3 {
    font-family: var(--font-header);
    font-size: 1.05rem;
    font-weight: 700;
}

.station-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-accent {
    background: rgba(0, 168, 255, 0.15);
    border: 1px solid rgba(0, 168, 255, 0.3);
    color: var(--neon-blue);
}

@media (max-width: 768px) {
    .sector-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    
    .station-details {
        width: 100%;
        min-width: unset;
    }
}

/* --- View Controls & Tabs --- */
.view-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--glass-border);
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 168, 255, 0.3);
}

.stats-counter {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stats-counter span {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* --- Dynamic Views Switcher --- */
.view-viewport {
    min-height: 400px;
}

.view-pane {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-fast) ease-in-out;
}

.view-pane.active {
    display: block;
    opacity: 1;
}

/* --- Matrix Spreadsheet Layout (Div-based Grid for Proper Sticky Support) --- */
.table-container {
    overflow: auto;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    max-height: calc(100vh - 340px);
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 180px repeat(auto-fit, minmax(60px, 1fr));
    grid-auto-rows: max-content;
    width: 100%;
}

.matrix-grid-header {
    display: contents;
}

.matrix-grid-body {
    display: contents;
}

.matrix-grid-row {
    display: contents;
}

.matrix-grid-cell {
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    white-space: normal;
}

.matrix-grid-header .matrix-grid-cell {
    padding: 14px 18px;
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    position: sticky;
    top: 0;
    background: #0f101d;
    border-bottom: 2px solid var(--glass-border);
    z-index: 10;
    transition: background-color var(--transition-fast);
}

.matrix-grid-header .matrix-grid-cell:hover {
    background-color: #1a1c32;
    color: #fff;
}

.matrix-grid-cell:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    background: #111222;
    border-right: 2px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--text-main);
    width: 240px;
    min-width: 240px;
    max-width: 240px;
}

.matrix-grid-header .matrix-grid-cell:first-child {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 15;
    background: #0d0e19;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.matrix-grid-row:hover .matrix-grid-cell:first-child {
    background-color: #16172d;
    box-shadow: inset -2px 0 0 var(--neon-cyan);
}

.matrix-grid-row:hover .matrix-grid-cell {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Table Badges & Tags */
.type-indicator {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-planet {
    background: rgba(212, 145, 90, 0.15);
    color: #e5a97c;
    border: 1px solid rgba(212, 145, 90, 0.35);
}

.type-asteroid {
    background: rgba(155, 89, 182, 0.1);
    color: var(--neon-purple);
    border: 1px solid rgba(155, 89, 182, 0.25);
}

/* Grid Cell Input Styling */
.cell-resource {
    text-align: center;
    font-family: var(--font-header);
    font-weight: 600;
    transition: background-color var(--transition-fast);
    cursor: default;
}

.cell-resource.has-yield {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.cell-resource.yield-none {
    color: rgba(255, 255, 255, 0.05);
    background-color: transparent !important;
}

/* Shading colors based on yield values - opacity controlled dynamically */
.cell-resource.yield-low {
    background-color: rgba(46, 213, 115, 0.15); /* Light Green */
    box-shadow: inset 0 0 1px rgba(46, 213, 115, 0.1);
}

.cell-resource.yield-med {
    background-color: rgba(46, 213, 115, 0.35); /* Medium Green */
    box-shadow: inset 0 0 2px rgba(46, 213, 115, 0.2);
}

.cell-resource.yield-high {
    background-color: rgba(46, 213, 115, 0.55); /* Dense Green */
    box-shadow: inset 0 0 4px rgba(46, 213, 115, 0.3);
}

.cell-resource.yield-rich {
    background-color: rgba(46, 213, 115, 0.75); /* Glowing Green */
    box-shadow: inset 0 0 6px rgba(46, 213, 115, 0.5);
    font-weight: 800;
}

/* Optional different color system for very rare/valuable items */
.cell-resource.yield-special {
    background-color: rgba(255, 159, 26, 0.4); /* Amber */
    box-shadow: inset 0 0 4px rgba(255, 159, 26, 0.3);
}

/* --- Detailed Card View Layout --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.detail-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.detail-card.type-card-asteroid {
    border-top: 3px solid var(--neon-purple);
}

.detail-card.type-card-planet {
    border-top: 3px solid var(--neon-cyan);
}

/* Card Header */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-header-row h3 {
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Weather pills inside cards */
.weather-pill {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.weather-pill i {
    color: var(--neon-blue);
}

.weather-pill.weather-temperate {
    color: #a8ffb2;
    border-color: rgba(46, 213, 115, 0.3);
    background: rgba(46, 213, 115, 0.05);
}
.weather-pill.weather-temperate i {
    color: var(--neon-green);
}

.weather-pill.weather-extreme {
    color: #ffd2a8;
    border-color: rgba(255, 159, 26, 0.3);
    background: rgba(255, 159, 26, 0.05);
}
.weather-pill.weather-extreme i {
    color: var(--neon-orange);
}

/* Resources section inside card */
.card-resources-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 4px;
}

.resource-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.r-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.r-tag span.yield-val {
    color: var(--neon-cyan);
    font-weight: 700;
    font-family: var(--font-header);
}

.r-tag:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(0, 0, 0, 0.5);
}

/* Properties section: deposits, dark side nodes */
.card-properties-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto; /* Push properties to the bottom of the card */
}

.prop-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.prop-darkside {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.25);
    color: #e8c4ff;
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.1);
}

.prop-darkside i {
    color: var(--neon-purple);
    animation: portalPulse 3s infinite ease-in-out;
}

.prop-deposit {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.25);
    color: #fff2bd;
}

.prop-deposit i {
    color: var(--neon-orange);
}

@keyframes portalPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.15) rotate(180deg); opacity: 1; text-shadow: 0 0 8px var(--neon-purple); }
    100% { transform: scale(1) rotate(360deg); opacity: 0.7; }
}

/* --- Empty Results Placeholder --- */
.empty-results {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 12px;
    gap: 15px;
}

.empty-results i {
    font-size: 3rem;
    color: var(--text-muted);
}

.empty-results h4 {
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: #fff;
}

.empty-results p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 400px;
}
