/**
 * Style dla niestandardowych markerów z avatarami na mapach restauracji.
 */

/* Style dla niestandardowych markerów z avatarami */
.custom-marker {
    background: none;
    border: none;
}

.marker-container {
    position: relative;
    width: 40px;
    height: 40px;
}

.marker-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 2;
}

.marker-pin {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 20px;
    height: 25px;
    background-color: #2c3e50;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    z-index: 1;
}

.marker-pin.featured {
    background-color: #e74c3c;
}

.marker-pin:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
}
