body {background: #2d3748;}



/* -------------------------------------------
 *   Hauptcontainer
 * ------------------------------------------- */
#at-standort {
width: 100%;
max-width: 1000px;
margin: 0 auto;
}

/* -------------------------------------------
 *   Soft‑UI Karte
 * ------------------------------------------- */
#at-standort-map {
width: 100%;
max-width: 800px;
height: 600px;

background: #2d3748;
border-radius: 22px;

box-shadow:
inset 6px 6px 12px rgba(0,0,0,0.55),
inset -6px -6px 12px rgba(255,255,255,0.08),
0 8px 25px rgba(0,0,0,0.55);

overflow: hidden;
position: relative;

transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover-Effekt */
#at-standort-map:hover {
transform: scale(0.995);
box-shadow:
inset 4px 4px 10px rgba(0,0,0,0.50),
inset -4px -4px 10px rgba(255,255,255,0.07),
0 6px 20px rgba(0,0,0,0.50);
}

/* -------------------------------------------
 *   Marker Animation + Schatten
 * ------------------------------------------- */
@keyframes markerPop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.leaflet-marker-icon {
    animation: markerPop 0.25s ease-out;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.55));
}

/* -------------------------------------------
 *   Popup Soft‑UI
 * ------------------------------------------- */
.leaflet-popup-content-wrapper {
    background: #2d3748;
    border-radius: 16px;

    box-shadow:
    inset 3px 3px 6px rgba(0,0,0,0.55),
    inset -3px -3px 6px rgba(255,255,255,0.10),
    0 6px 18px rgba(0,0,0,0.55);

    color: #eaeaea;
}

/* -------------------------------------------
 *   Controls / Buttons / Status / Koordinaten
 * ------------------------------------------- */
#at-standort-controls {
margin-top: 15px;
}
#at-standort-locate {
    padding: 10px 18px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;

    background: #2d3748;
    color: #eaeaea;

    box-shadow:
        inset 3px 3px 6px rgba(0,0,0,0.55),
        inset -3px -3px 6px rgba(255,255,255,0.10),
        0 6px 18px rgba(0,0,0,0.55);

    transition: all 0.2s ease;
}

#at-standort-locate:hover {
    box-shadow:
        inset 2px 2px 4px rgba(0,0,0,0.50),
        inset -2px -2px 4px rgba(255,255,255,0.08),
        0 4px 14px rgba(0,0,0,0.50);
}


#at-standort-status {
margin-top: 10px;
color: #eaeaea;
}

#at-standort-coordinates {
display: flex;
gap: 25px;
margin-top: 10px;
flex-wrap: wrap;
color: #eaeaea;
}
