.map-block {
    align-items: center;
    width: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}
.map-container svg {
    width: 100%;
    height: auto;
    display: block;
}
.region {
    fill: #fafafa;
    stroke: #6B7280;
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.region:hover {
    fill: #155e63;
	stroke-width: 2;
}
/*.region.active {
    fill: #155e63;
    fill: #fafafa;
    stroke: #6B7280;
    stroke-width: 2;
}*/
.region-info {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    min-width: 200px;
    display: none;
    z-index: 1000;
}
.region-info h5 {
    margin: 0 0 10px 0;
    color: #333;
}
.region-info p {
    margin: 5px 0;
    color: #666;
}
.controls {
    text-align: center;
    margin: 20px 0;
}
.reset-btn {
    background: #EA580C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.reset-btn:hover {
    background: #cc0000;
}
/* для подсветки блока при прокрутке */
.region-data.highlighted {
//    background-color: #fafafa;
//    border-left: 2px solid #EA580C;
//    transition: all 0.3s ease;
//    padding: 10px;
}
.flag-marker {
    position: absolute;
    width: 40px;
    height: 80px;
    z-index: 10;
    transform: translate(-10%, -85%);
    background-image: url('flag-tigor.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    transition: all 0.3s ease;
}
.region-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 100;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transform: translate(-5px, -45px);
}
.region-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}
.region-tooltip.visible {
    opacity: 1;
}