/* Google Maps Widget Styles */
.hm-google-map-wrap {
    position: relative;
    height: 100%;
}

.hm-google-map {
    width: 100%;
    height: 400px;
}

.hm-google-map-controls {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hm-google-map-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    padding: 12px;
    background: var(--e-global-color-primary);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .hm-google-map-control:hover {
        background: var(--e-global-color-secondary);
    }
}

.hm-google-map-control svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hm-google-map-error {
    padding: 20px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}