.custom-map-wrapper {
    position: relative;
    width: 100%;
}

/* Стили для "плавающей" кнопки */
.floating-yandex-btn {
    position: absolute;
    top: 10px;       /* Отступ сверху */
    left: 10px;      /* Отступ слева (чтобы не пересекаться с кнопкой "схема/спутник" справа) */
    z-index: 99;   /* Гарантированно выше карты */

    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.95); /* Полупрозрачный белый фон */
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-yandex-btn:hover {
    background-color: #FC3F1D; /* Фирменный красный цвет Яндекса при наведении */
    color: #fff;
    box-shadow: 0 4px 12px rgba(252, 63, 29, 0.3);
}