/* Ohio Locations Map Styles */
.ohio-map-wrapper-0266221a {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ohio-map-container-0266221a {
    width: 100%;
    height: 550px;
}

@media (max-width: 768px) {
    .ohio-map-container-0266221a {
        height: 400px;
    }

    .ohio-map-wrapper-0266221a {
        margin: 20px auto;
        border-radius: 10px;
    }
}

/* Custom marker styling */
.ohio-pin-0266221a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50% 50% 50% 0;
    background-color: #2d2d2d;
    transform: rotate(-45deg);
    border: 3px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.ohio-pin-0266221a .ohio-pin-inner-0266221a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.ohio-pin-active-0266221a {
    background-color: #c9a96e;
    transform: rotate(-45deg) scale(1.25);
    box-shadow: 0 5px 18px rgba(201, 169, 110, 0.5);
}

.ohio-pin-active-0266221a .ohio-pin-inner-0266221a {
    background-color: #ffffff;
}

/* Label tooltip */
.ohio-label-0266221a {
    background: #2d2d2d;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ohio-label-visible-0266221a {
    opacity: 1;
}

.ohio-label-0266221a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2d2d2d;
}
