/* Общие стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #212529;
    transition: background 0.3s, color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Темы */
body.dark {
    background: #121212;
    color: #e0e0e0;
}

body.dark .card, body.dark .nav-tabs .nav-link {
    background: #1e1e1e;
    color: #ffffff;
}

body.dark .nav-tabs .nav-link.active {
    background: #333;
    color: #fff;
}

/* Переключатель темы */
.theme-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Карта */
#map {
    height: 400px;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Видео */
#hls-video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    background: #000;
    border-radius: 8px;
    display: block;
}

/* Загрузка и ошибки */
#loading, #error-message {
    text-align: center;
    margin: 20px 0;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Категории */
.category-tabs {
    margin: 20px 0;
}

.category-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: #495057;
    font-weight: 500;
}

.category-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom: 3px solid #0d6efd;
}

/* Погода */
.weather-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.dark .weather-card {
    background: #2d2d2d;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    #map {
        height: 300px;
    }
}