/* Vollbild-Wrapper */
.fwg-map-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    z-index: 9999;
}

/* Logo */
.fwg-map-logo {
    height: 34px;
}

/* Header */
.fwg-map-header {
    background: #0b3169;
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.fwg-map-header h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

/* Zurück-Button */
.fwg-back-btn {
    background: rgba(255,255,255,0.18);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.fwg-back-btn:hover {
    background: rgba(255,255,255,0.28);
}

/* Pfeil-Icon */
.fwg-back-icon {
    width: 22px;
    height: 22px;
    stroke: #FF8C00; /* kräftiges Orange */
    stroke-width: 3; /* fett */
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Karte */
#fwg-map {
    flex: 1;
    width: 100%;
}
