.meteo-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

.meteo-status-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.meteo-status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.meteo-status-indicator.online { background-color: #4CAF50; box-shadow: 0 0 8px #4CAF50; }
.meteo-status-indicator.offline { background-color: #f44336; box-shadow: 0 0 8px #f44336; }

.meteo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.meteo-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.meteo-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meteo-value {
    font-size: 2.5em;
    font-weight: 700;
    margin: 10px 0;
    color: #2c3e50;
}

.meteo-subval {
    font-size: 0.95em;
    color: #888;
}

.meteo-chart-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.meteo-chart-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.meteo-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
}

.meteo-btn:hover { background: #e9ecef; }
.meteo-btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.chart-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .meteo-value { font-size: 2em; }
    .chart-wrapper { height: 300px; }
}