/* === Hilfebox Style: Modern Blue Theme V2 KRITISCH KORRIGIERT === */
#help-box {
  position: fixed !important; 
  bottom: 80px !important;    
  right: 20px !important;
  background: #1976D2; /* Sattes, modernes Blau */
  color: #FFFFFF;     /* Weißer Text für Kontrast */
  padding: 18px !important; /* Etwas mehr Padding */
  border: 2px solid #FFC107 !important; /* KRITISCH: Gelber Rand */
  border-radius: 12px; /* Abgerundete Ecken */
  box-shadow: 0 6px 15px rgba(0,0,0,0.4), 0 0 8px rgba(255,255,0,0.5); /* Optimierter Schatten */
  font-size: 14px;
  line-height: 1.5;
  max-width: 300px !important; /* KRITISCH: Breite erhöhen */
  width: 300px !important;     /* KRITISCH: Breite erhöhen */
  display: none;
  z-index: 10000 !important; /* Wichtig: Über allem liegen */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Styling für die Kopfzeile (mit Icons) */
#help-box .help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; 
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Icons */
#help-box .help-icon {
  cursor: pointer;
  font-size: 20px;
}

/* Icon für Einstellungen */
#help-box .settings-icon {
    color: #FFFF00 !important; /* Gelb */
}

/* Icon für Befehle (📚) */
#help-box .commands-icon { 
    color: #FFFFFF !important; /* Weiß */
    margin: 0 10px; 
}

/* Icon für Info (ℹ) */
#help-box .info-icon { 
    color: #A8D5FF !important; /* Helles Blau */
    margin-right: 10px;
}

/* Icon für Schließen (✖) */
#help-box .close-icon {
    color: #FF0000 !important; /* Rot */
}

/* Text-Container und List-Items */
#help-box p, #help-box ul {
  margin: 0 0 10px 0;
  color: white; 
}

#help-box ul {
  list-style: none;
  padding-left: 0;
}

/* Stil für Befehls-Tags */
#help-box code {
  background: #0d47a1;
  color: #FFF0B5;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: bold;
}