.handball-ligamap-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 2rem auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.handball-ligamap-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.25rem;
    width: 100%;
    align-items: stretch;
}

.handball-ligamap-list {
    background: #ffffff;
    border: 1px solid #d9e1d8;
    border-radius: .85rem;
    max-height: 620px;
    overflow-y: auto;
    padding: .4rem;
}

.handball-ligamap-reset {
    width: 100%;
    border: 0;
    background: #082349;
    color: #ffffff;
    font-weight: 700;
    font-size: .85rem;
    padding: .5rem .6rem;
    border-radius: .55rem;
    margin-bottom: .35rem;
    cursor: pointer;
    text-align: center;
}

.handball-ligamap-list-item {
    width: 100%;
    display: grid;
    grid-template-columns: 26px 34px minmax(0, 1fr);
    gap: .45rem;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    background: transparent;
    padding: .35rem .25rem;
    cursor: pointer;
    text-align: left;
}

.handball-ligamap-list-item:hover,
.handball-ligamap-list-item.is-active {
    background: #edf5eb;
    border-radius: .45rem;
}

.handball-ligamap-list-number {
    font-weight: 800;
    font-size: .85rem;
    color: #082349;
    text-align: center;
}

.handball-ligamap-list-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dddddd;
}

.handball-ligamap-list-logo img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.handball-ligamap-list-title {
    font-size: .82rem;
    font-weight: 600;
    color: #082349;
    line-height: 1.1;
}

.handball-ligamap {
    width: 100%;
    height: 620px;
    border-radius: 1rem;
    overflow: hidden;
    background: #f2f2f2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.handball-map-number-marker-wrapper {
    background: transparent;
    border: none;
}

.handball-map-number-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #082349;
    color: #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.handball-map-number-marker.is-homeclub {
    width: 30px;
    height: 30px;
    background: #ff3300;
}

@media (max-width: 991.98px) {
    .handball-ligamap-layout {
        grid-template-columns: 1fr;
    }

    .handball-ligamap-list {
        max-height: none;
    }

    .handball-ligamap {
        height: 430px;
    }
}