body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Merriweather', serif;
    background: #1a1a1a;
    position: relative;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.region-button {
    position: absolute;
    z-index: 1000;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Merriweather', serif;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.region-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.region-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .region-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    #map {
        height: 100vh;
        width: 100vw;
    }
}

/* Стили для всплывающих подсказок */
.leaflet-popup-content {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 10px;
}

.leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95);
}

/* Стили для контролов карты */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

.leaflet-control-zoom a {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    border: none !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 18px !important;
}

.leaflet-control-zoom a:hover {
    background: rgba(255, 255, 255, 1) !important;
}

/* Стили для фона */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
} 