#map {
    width: 100%;
    height: 70vh;
}

.custom-marker {
    width: 50px;
    height: 50px;
    background-size: cover;
    border-radius: 50%;
    border: 2px solid #fff; /*#303a5c*/
    cursor: pointer;
}

.marker-label {
    display: none;
    position: absolute;
    top: 30px; /* Відступ вниз */
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.8);
    padding: 3px 6px;
    border-radius: 5px;
    white-space: nowrap;
    text-align: center;
}

.categories-list-column {
    width: 100%;
    max-width: 386px;
}

.category-item {
    border: none;
}

.category-link {
    border: 1px solid #eeeeee;
    border-radius: 10px;
}

.category-title h3 {
    color: #4360c1;
    margin: 0 0 7px 0;
}

@media (max-width: 767px) {
    .category-link {
        display: flex;
        flex-direction: column;
    }

    .category-img {
        margin: 0 auto;
        height: auto;
    }

    .category-title {
        width: 100%;
    }

    .category-title h3 {
        margin: 5px 0 7px 0;
    }
}