/* Travel Map Markers */
.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff4757;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker:hover {
    width: 16px;
    height: 16px;
    background-color: #ff6b81;
}

.map-marker::after {
    content: attr(data-location);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 8px;
}

.map-marker:hover::after {
    opacity: 1;
}