.great-map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.great-map-tabs {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #f2f2f2;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.great-map-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 600;
    color: #b3b3b3;
    cursor: pointer;
    border-right: 1px solid #000;
    transition: all 0.2s ease;
    text-align: center;
    flex-direction: row;
    gap: 8px;
}

.great-map-tab:last-child {
    border-right: none;
}

.great-map-tab.active {
    color: #000;
    background-color: #f2f2f2;
}

#great-map {
    width: 100%;
    height: calc(100% - 42px);
    position: absolute;
    top: 42px;
    left: 0;
}

/* RSS */
@media (max-width: 600px) {
    .great-map-tab {
        flex-direction: column;
        gap: 4px;
        font-size: 13px;
        padding: 8px 4px;
    }

    .great-map-tab img {
        width: 20px;
        height: 20px;
    }
}
