/* ================================================
   NWA Grid Dashboard - Vaporwave Weather Channel Style
   ================================================ */

/* CSS Variables - Vaporwave Color Palette */
:root {
    /* Primary Vaporwave Colors */
    --neon-pink: #ff6ec7;
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-blue: #4d4dff;
    --sunset-orange: #ff9966;
    --sunset-pink: #ff5e99;
    
    /* Background Colors */
    --bg-dark: #0d0221;
    --bg-panel: #1a0a2e;
    --bg-panel-alt: #16082a;
    --bg-header: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    
    /* Text Colors */
    --text-primary: #e0e0ff;
    --text-secondary: #a0a0c0;
    --text-muted: #6060a0;
    
    /* Accent Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
    --gradient-sunset: linear-gradient(180deg, var(--sunset-orange), var(--sunset-pink), var(--neon-purple));
    
    /* Glow Effects */
    --glow-pink: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
    --glow-cyan: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    --glow-purple: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
    
    /* Panel Borders */
    --border-glow: 1px solid rgba(0, 245, 255, 0.3);
    
    /* Spacing */
    --panel-gap: 15px;
    --panel-padding: 15px;
    --header-height: 70px;
    --footer-height: 80px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* Scanline Effect Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* Header Styles */
.dashboard-header {
    background: var(--bg-header);
    min-height: var(--header-height);
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 2px 20px rgba(0, 245, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}

.dashboard-header .row {
    min-height: 50px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-text:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.logo-text i {
    -webkit-text-fill-color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
    transition: all 0.3s ease;
}

.logo-text:hover i {
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    transform: rotate(15deg);
}

.logo-credits {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    padding-left: 38px;
    transition: all 0.3s ease;
}

.logo-credits:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.status-badge {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #000;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.status-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.6);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.central-clock {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: default;
}

.central-clock:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    transform: scale(1.05);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline-neon {
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-neon:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    transform: scale(1.15);
}

.last-update {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.last-update:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Main Dashboard Grid - SCROLLABLE */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(350px, auto);
    gap: var(--panel-gap);
    padding: var(--panel-gap);
    max-width: 100%;
}

/* Grid Panel Base Styles */
.grid-panel {
    background: var(--bg-panel);
    border: var(--border-glow);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.grid-panel:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 110, 199, 0.4);
    transform: translateY(-3px);
}

.panel-header {
    background: linear-gradient(90deg, var(--bg-panel-alt), var(--bg-panel));
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
}

.panel-header:hover {
    background: linear-gradient(90deg, rgba(191, 0, 255, 0.15), var(--bg-panel));
    border-bottom-color: var(--neon-pink);
}

.panel-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.panel-header h3:hover {
    color: var(--neon-pink);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--neon-pink);
}

.panel-header h3 i {
    color: var(--neon-pink);
    transition: all 0.3s ease;
}

.panel-header h3:hover i {
    color: var(--neon-cyan);
    transform: rotate(15deg) scale(1.2);
}

.panel-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.panel-location:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.external-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.external-link:hover {
    color: var(--neon-cyan);
    background: rgba(0, 245, 255, 0.1);
    transform: scale(1.3);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Panel Refresh Button */
.btn-panel-refresh {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-panel-refresh:hover {
    background: var(--neon-purple);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(191, 0, 255, 0.5);
}

.btn-panel-refresh:active {
    transform: scale(0.95);
}

.btn-panel-refresh i {
    transition: transform 0.5s ease;
}

.btn-panel-refresh:hover i {
    transform: rotate(180deg);
}

/* Camera link */
.camera-link {
    color: var(--neon-cyan);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.camera-link:hover {
    color: var(--neon-pink);
    transform: scale(1.2);
}

/* Hover Image Link Styles */
.hover-image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.panel-preview-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.hover-image-link:hover .panel-preview-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(191, 0, 255, 0.3) 0%,
        rgba(0, 245, 255, 0.2) 50%,
        rgba(255, 110, 199, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.hover-image-link:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay i {
    font-size: 3rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.hover-image-link:hover .hover-overlay i {
    transform: translateY(0);
}

.hover-overlay span {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    border: 1px solid var(--neon-cyan);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.hover-image-link:hover .hover-overlay span {
    transform: translateY(0);
    background: rgba(191, 0, 255, 0.5);
    border-color: var(--neon-pink);
}

/* Panel external link that changes per tab */
.panel-external-link {
    transition: all 0.3s ease;
}

.panel-content {
    flex: 1;
    padding: var(--panel-padding);
    overflow: auto;
}

/* Panel Controls Row */
.panel-controls-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.panel-controls-row:hover {
    background: rgba(255, 110, 199, 0.05);
    border-color: rgba(255, 110, 199, 0.2);
}

/* Panel Tabs */
.panel-tabs {
    display: flex;
    gap: 5px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(191, 0, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(191, 0, 255, 0.4);
}

.tab-btn.active {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: var(--glow-purple);
}

.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: block;
}

/* Weather Panel Styles */
.weather-panel {
    grid-column: 1;
}

.weather-display {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.weather-main {
    flex: 1;
    min-width: 150px;
}

.temp-display {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    cursor: default;
}

.temp-display:hover {
    transform: scale(1.08);
}

.temp-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.temp-value:hover {
    filter: brightness(1.3);
}

.temp-unit {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 5px;
    transition: all 0.3s ease;
}

.temp-display:hover .temp-unit {
    color: var(--neon-cyan);
}

.conditions {
    font-size: 1.1rem;
    color: var(--text-primary);
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: default;
}

.conditions:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.feels-like {
    font-size: 0.85rem;
    color: var(--sunset-orange);
    margin-top: 5px;
    font-style: italic;
    transition: all 0.3s ease;
}

.feels-like:hover {
    color: var(--neon-pink);
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 2;
    min-width: 300px;
}

.wx-detail {
    background: rgba(0, 245, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.wx-detail:hover {
    background: rgba(255, 110, 199, 0.15);
    border-color: var(--neon-pink);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 110, 199, 0.3);
}

.wx-detail i {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.wx-detail:hover i {
    color: var(--neon-pink);
    transform: scale(1.3) rotate(10deg);
}

.detail-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.wx-detail:hover .detail-label {
    color: var(--text-secondary);
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.wx-detail:hover .detail-value {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Dewpoint severity colors */
.dewpoint-comfortable { color: #4caf50; }
.dewpoint-sticky { color: #ffeb3b; }
.dewpoint-oppressive { color: #ff9800; }
.dewpoint-miserable { color: #f44336; text-shadow: 0 0 10px #f44336; }

.outlook-images {
    margin-top: 15px;
}

.outlook-img {
    position: relative;
    transition: all 0.3s ease;
}

.outlook-img:hover {
    transform: scale(1.03);
}

.outlook-img img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.outlook-img:hover img {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 110, 199, 0.4);
}

.img-label {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.outlook-img:hover .img-label {
    background: var(--neon-pink);
    color: #fff;
}

/* Incidents Panel Styles */
.incidents-panel {
    grid-column: 2;
}

.incidents-count {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.count-badge {
    background: var(--gradient-sunset);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 10px;
    min-width: 50px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.count-badge:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 153, 102, 0.6);
}

#eventTable {
    font-size: 0.8rem;
}

#eventTable th {
    background: rgba(191, 0, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.2);
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: default;
}

#eventTable th:hover {
    background: rgba(191, 0, 255, 0.4);
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

#eventTable td {
    border-color: rgba(0, 245, 255, 0.1);
    vertical-align: middle;
    transition: all 0.3s ease;
}

#eventTable tbody tr {
    transition: all 0.3s ease;
}

#eventTable tbody tr:hover {
    background: rgba(0, 245, 255, 0.2) !important;
    transform: scale(1.01);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.incident-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.incident-type:hover {
    transform: scale(1.15);
    box-shadow: 0 0 10px currentColor;
}

.incident-crash { background: #f44336; color: #fff; }
.incident-construction { background: #ff9800; color: #000; }
.incident-closure { background: #9c27b0; color: #fff; }
.incident-weather { background: #2196f3; color: #fff; }
.incident-other { background: #607d8b; color: #fff; }

.chart-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    margin: 15px 0;
}

.btn-ignore {
    padding: 3px 10px;
    font-size: 0.7rem;
    background: transparent;
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ignore:hover {
    background: var(--neon-pink);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 110, 199, 0.6);
}

/* Map Panel Styles */
.map-panel {
    min-height: 350px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--bg-dark);
    border-radius: 5px;
}

/* ADS-B Panel Styles */
.adsb-panel {
    min-height: 350px;
}

.iframe-container {
    padding: 0;
    position: relative;
}

.iframe-container iframe,
.tab-content iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    border-radius: 0 0 10px 10px;
}

/* Radar Panel Styles */
.radar-panel {
    grid-column: 1 / -1;
    min-height: 450px;
}

.radar-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.radar-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0, 245, 255, 0.4);
}

/* Severe Weather Panel */
.severe-panel {
    grid-column: 1 / -1;
    min-height: 450px;
}

/* Models Panel Styles */
.models-panel {
    min-height: 450px;
}

/* NWS Panel */
.nws-panel {
    min-height: 400px;
}

/* Streams Panel */
.streams-panel {
    min-height: 400px;
}

/* Tools Panel Styles */
.tools-panel {
    grid-column: 1 / -1;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.quick-link:hover {
    background: rgba(255, 110, 199, 0.2);
    border-color: var(--neon-pink);
    transform: translateY(-8px) scale(1.08);
    color: var(--neon-pink);
    box-shadow: 0 15px 30px rgba(255, 110, 199, 0.4);
}

.quick-link i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--neon-cyan);
    transition: all 0.4s ease;
}

.quick-link:hover i {
    color: var(--neon-pink);
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

.quick-link span {
    font-size: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-link:hover span {
    font-weight: 600;
    text-shadow: 0 0 5px var(--neon-pink);
}

.camera-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(191, 0, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.camera-count:hover {
    background: rgba(191, 0, 255, 0.25);
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(191, 0, 255, 0.3);
}

.camera-count i {
    color: var(--neon-pink);
    transition: all 0.3s ease;
}

.camera-count:hover i {
    transform: scale(1.3);
}

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

/* Footer Styles */
.dashboard-footer {
    background: var(--bg-panel);
    min-height: var(--footer-height);
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-data {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-data a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-data a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-credits {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.credit-link {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.credit-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

#refreshTimer {
    color: var(--neon-cyan);
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(300px, auto);
    }
    
    .grid-panel {
        grid-column: 1 !important;
    }
    
    .weather-details {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        min-height: auto;
        padding: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-credits {
        padding-left: 30px;
        font-size: 0.6rem;
    }
    
    .central-clock {
        font-size: 1rem;
    }
    
    .header-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .weather-display {
        flex-direction: column;
    }
    
    .weather-details {
        grid-template-columns: repeat(4, 1fr);
        min-width: auto;
    }
    
    .temp-value {
        font-size: 2.5rem;
    }
    
    .quick-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-data {
        text-align: center;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .weather-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .panel-tabs {
        flex-wrap: wrap;
    }
    
    .logo-credits {
        display: none;
    }
    
    .panel-controls-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.grid-panel {
    animation: fadeIn 0.5s ease forwards;
}

/* Form elements hover */
.form-check-input {
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.form-check-label {
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-label:hover {
    color: var(--neon-cyan);
}

/* Global text hover effect */
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
    color: var(--neon-pink) !important;
}

/* Button hover glow */
button:hover, .btn:hover {
    box-shadow: 0 0 20px currentColor;
}

/* Link hover effects */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 10px currentColor;
}
