body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

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

h1 {
    text-align: center;
    margin-bottom: 20px;
}

#map {
    height: 600px;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.slider-container {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#time-slider {
    flex-grow: 1;
}

.legend {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: 20px 0;
}

.legend h4 {
    margin: 0 0 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.info {
    padding: 6px 8px;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.info h4 {
    margin: 0 0 5px;
}

.title-control {
    padding: 10px;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 10px;
}

.title-control div {
    font-size: 0.9em;
    color: #666;
}

.party-results {
    margin-top: 8px;
    max-height: 150px;
    overflow-y: auto;
    font-size: 0.9em;
}

.party-results .winning-party {
    font-weight: bold;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.party-results .below-five-percent {
    opacity: 0.5;
}

.party-color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.results-legend {
    margin-top: 10px;
}

#results-content {
    font-size: 0.9em;
    max-height: 200px;
    overflow-y: auto;
}
