#fms-reg-map { 
    display: block !important;
    width: 100% !important; 
    height: 500px !important; 
    background: #e5e3df; 
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    cursor: crosshair;
}

/* Leaflet-wrapper: Pitää markkerin paikallaan */
.fms-marker-wrapper {
    background: transparent !important;
    border: none !important;
}

/* Pyöreä ikoni ja tiukka rajaus */
.fms-round-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
    background: white !important;
    overflow: hidden !important; 
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.fms-round-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
}

/* Käyttäjän oma valinta */
.own-selection {
    width: 50px !important;
    height: 50px !important;
    border: 3px solid #007bff !important;
}

/* Animaatio sisäosassa estää transform-konfliktit */
.pulse-active {
    animation: fms-marker-pulse 1.6s infinite ease-in-out;
}

@keyframes fms-marker-pulse {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); }
    100% { transform: scale(1.0); }
}

.fms-info-text { color: #d9534f; font-weight: bold; margin-bottom: 10px; }

/* Popup-sisällön tyyli */
.fms-popup-content { font-size: 13px; line-height: 1.4; }
.fms-popup-expertises { color: #555; font-style: italic; margin-top: 4px; border-top: 1px solid #eee; padding-top: 4px; }