/*
 * rt-interactive-map Styles
 * Version: 1.0
 */

/* Map Container Styles */
.rt-location-map-container {
    position: relative;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.rt-map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #666;
    z-index: 1;
}

#rt-interactive-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Burgundy red map marker */
.rt-map-marker {
    background: transparent;
    border: 0;
}

.rt-map-marker span {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    background: #800020;
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.rt-map-marker span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background: #fff;
    border-radius: 50%;
}
