
#safari-map-tabs {
    margin-bottom: 10px;
    text-align: center;
}
.safari-tab {
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    border: none;
    background: #eee;
    font-weight: bold;
}
.safari-tab.active {
    background: #4285f4;
    color: white;
}
.custom-marker {
    background: black;
    color: white;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    font-weight: bold;
    white-space: nowrap;
    position: relative;
}
.custom-marker img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.marker-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid black;
}
