/* -------------------------------
   MAP CONTAINER
-------------------------------- */
.ship-map {
    position: relative; /* WICHTIG für Buttons */
}

/* -------------------------------
   STOP MARKER
-------------------------------- */
.ship-stop-marker {
    background: #1e88e5;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 6px rgba(0,0,0,0.35);
    border: 2px solid #fff;
}

.ship-stop-marker span {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: #fff;
    color: #1e88e5;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 3px rgba(0,0,0,0.4);
}

/* -------------------------------
   VOLLBILD BUTTON
-------------------------------- */
.ship-map-fullscreen-btn {
    position: absolute;
    top: 10px;
    left: 55px; 
    background: white;
    color: #1e88e5;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* -------------------------------
   CLOSE BUTTON
-------------------------------- */
.ship-map-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    z-index: 10000;
    display: none;       /* Standard: versteckt */
    pointer-events: auto; /* WICHTIG: klickbar */
}

/* Nur im Vollbild anzeigen */
.ship-map.fullscreen .ship-map-close-btn {
    display: block;
}

/* -------------------------------
   VOLLBILD MODUS
-------------------------------- */
.ship-map.fullscreen {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    border-radius: 0;
    background: #000;
}

/* -------------------------------
   LEAFLET ICON CLEANUP
-------------------------------- */
.ship-div-icon {
    background: none !important;
    border: none !important;
}

.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}