/* Leaflet Draw Toolbar Customization */
.leaflet-draw-toolbar {
    background-color: #ffc619 !important; /* Gelber Hintergrund von 'Karten' */
    border: 2px solid #113f1e !important; /* Grüner Rand vom Profil */
    border-radius: 12px !important;
    overflow: hidden;
    opacity: 1 !important; /* Keine Transparenz */
}

.leaflet-draw-toolbar a {
    background-color: #eab308 !important;
    border-bottom: 1px solid rgba(49, 87, 60, 0.2) !important;
    filter: none !important; /* Icons dunkel lassen für bessere Lesbarkeit auf Gelb */
}

.leaflet-draw-toolbar a:hover {
    background-color: #FF6F00 !important; /* Leicht dunkleres Gelb für Hover-Effekt */
}

/* Anpassung der unteren Sektion (Edit/Delete) falls vorhanden */
.leaflet-draw-actions a {
    background-color: #31573c !important;
    color: white !important;
}

/* Aktiver Zustand für das Draw-Tool */
.btn-draw-active {
    background-color: #eab308 !important; /* Gelb wie Inventar */
    border-color: #31573c !important;     /* Grün wie Profil-Rand */
    color: #31573c !important;            /* Icon ebenfalls grün */
}

/* Erweitert den aktiven Zustand auf das Icon (Lucide-SVG) */
.btn-draw-active i {
    color: #31573c !important;
}

/* Falls du Lucide nutzt, stellt dies sicher, dass der Strich grün wird */
.btn-draw-active svg {
    stroke: #31573c !important;
}

/* Allgemeiner aktiver Status für HUD-Buttons */
.btn-active {
    background-color: #eab308 !important; /* Gelb */
    border-color: #31573c !important;     /* Grün */
}

.btn-active i, .btn-active svg {
    color: #31573c !important;
    stroke: #31573c !important;
}

/* Padding am oberen Rand des Scroll-Inhalts für Side Panel */
.panel-content {
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}