/* Helle, transparente Flächen für Titel, Link-Kacheln und Statusbereich */
.service-card,
#information-widgets {
  background-color: rgba(255, 255, 255, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Iframe der Tagesmeldung ohne eigenen Hintergrund */
iframe[name="tagesmeldung"] {
  background: transparent;
}
/* Titel in der Kopfzeile zentrieren */
#information-widgets .information-widget-greeting {
  flex: 1 1 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
}

#information-widgets .information-widget-greeting::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background: url("/images/logo.png") left center / contain no-repeat;
}
