body {
    margin: 0;
    background: #e0e0e0;
    color: #333;
    font-family: 'Roboto', sans-serif;
    display: flex;
    height: 100vh;
}

#dashboard {
    display: flex;
    width: 100%;
}

#map-container {
    flex: 3;
    background: #ccc;
}

#controls-panel {
    flex: 1;
    background: #fff;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 100;
}

h2 {
    font-weight: 900;
    letter-spacing: 1px;
    border-bottom: 4px solid #333;
    padding-bottom: 10px;
}

input[type=range] {
    width: 100%;
}

#month-display {
    font-size: 2rem;
    font-weight: 900;
    color: #555;
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    background: #f4f4f4;
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.stat-box .val { font-size: 1.5rem; font-weight: bold; color: #000; }
.stat-box .label { font-size: 0.7rem; color: #666; }
