/* Header */
.app-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  padding: 0 16px;
}

/* Mitte: Logo + Titel */
.app-header-left {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Rechts: Sprache */
.header-right {
  margin-left: auto;
}


.app-logo {
  width: 32px;
  height: 32px;
}

.app-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.subtitle {
  text-align: center;
  margin-top: 6px;
}

/* Toolbar */
.toolbar {
  text-align: center;
  margin-bottom: 20px;
}

.toolbar button {
  margin: 4px;
}

.toolbar-select {
  margin-top: 12px;
}

/* Section layout */
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-width {
  width: 100%;
  margin-bottom: 15px;
}