/* Notification Fix - Super specific to override everything */

.notification {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  padding: 16px !important;
  background: #2c2c2c !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  z-index: 10000 !important;
  max-width: 300px !important;
  border-left: 3px solid #b12009 !important;
  animation: slideIn 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
  border-radius: 0 !important;
}

.notification.success {
  background: #44aa99 !important;
  color: #ffffff !important;
  border-left-color: #ffffff !important;
}

.notification.info {
  background: #2c2c2c !important;
  color: #ffffff !important;
  border-left-color: #b12009 !important;
}

.notification.danger {
  background: #ee5555 !important;
  color: #ffffff !important;
  border-left-color: #ffffff !important;
}

.notification button {
  background: none !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 16px !important;
  cursor: pointer !important;
  float: right !important;
  margin-left: 8px !important;
  opacity: 0.8 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.notification button:hover {
  opacity: 1 !important;
}

.notification span {
  color: #ffffff !important;
  display: inline-block !important;
}
/*
 * Dauerhafter PLZ-Hinweis — sieht aus wie .notification.info, ist aber KEINE.
 *
 * Bewusst eigene Klasse: showNotification() (reset.js) raeumt vor jeder neuen
 * Toast per querySelector('.notification') ALLE Notifications ab. Truege dieser
 * Hinweis dieselbe Klasse, risse eine spaetere Toast ihn aus dem DOM — mitten
 * aus React heraus, das ihn noch verwaltet. Darum steht das Aussehen hier
 * dupliziert statt geteilt.
 *
 * Kein setTimeout-Weg wie bei der Toast: Der Hinweis bleibt, bis eine PLZ
 * eingegeben ist (React steuert das ueber den daten-Zustand).
 */
.plz-hinweis {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  padding: 16px !important;
  background: #2c2c2c !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  z-index: 10000 !important;
  max-width: 300px !important;
  border-left: 3px solid #b12009 !important;
  animation: slideIn 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  border-radius: 0 !important;
}
.plz-hinweis span {
  color: #ffffff !important;
  display: inline-block !important;
}
.plz-hinweis button {
  background: none !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 16px !important;
  cursor: pointer !important;
  float: right !important;
  margin-left: 8px !important;
  opacity: 0.8 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.plz-hinweis button:hover {
  opacity: 1 !important;
}
