/* Map Styles & Navigation */
.map-style-menu {
    position: absolute;
    top: 98px;
    right: 60px;
    background: #152a47;
    border-radius: 4px;
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1;
}

.map-style-menu.active {
    display: block;
}

.map-style-menu button {
    display: block;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: none;
    color: #e2e8f0;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
}

.map-style-menu button:hover {
    background: #1d3456; /* Синий темный для эффекта hover */
}

.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    padding: 8px 16px;
    background: #1a305a;
    color: #e2e8f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.tab-btn:hover {
    background: #1d3456;
}

.tab-btn.active {
    background: #3b6ef6;
    color: white;
}

.tabs-container {
    display: flex;
    flex-direction: column;
}

.tabs-header {
    display: flex;
    background: #1a2d51; /* Темно-синий фон для вкладок */
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
    display: none;
}

.tab-button {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.tab-button:hover {
    color: white;
    background: rgba(59, 110, 246, 0.05);
}

.tab-button.active {
    color: white;
    border-bottom-color: #3b6ef6;
    background: rgba(59, 110, 246, 0.1);
}

.tabs-content {
    padding: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Tab Panels styles */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}