* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

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

.map-container {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    height: 100vh;
}

.zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 5px;
}

.zoom-controls button {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ccc;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.zoom-controls button:hover {
    background-color: #f0f0f0;
}

#reset-zoom {
    width: auto;
    padding: 0 10px;
    font-size: 14px;
}

#map {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#tooltip {
    position: absolute;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    max-width: 200px;
    z-index: 10;
}

.state {
    fill: #3498db;
    stroke: #fff;
    stroke-width: 0.5px;
    transition: fill 0.3s;
}

.state:hover {
    fill: #e74c3c;
    cursor: pointer;
}