/* ===== Mini pin avatar ===== */

.alumni-marker-wrapper {
    background: transparent;
    border: none;
}

.alumni-marker-bubble {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2001a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0,0,0,0.25);
}

/* Pointe du pin */
.alumni-marker-bubble::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: #e2001a transparent transparent transparent;
}

.alumni-marker-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-marker-initials {
    font-size: 10px;
    font-weight: bold;
    color: #444;
}

.leaflet-marker-icon {
    cursor: pointer;
}

/* ===== Popup ===== */

.alumni-popup {
    max-width: 260px;
    padding: 10px;
    text-align: left;
}

.alumni-popup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.alumni-popup h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.alumni-popup p {
    margin: 4px 0;
    font-size: 14px;
}
