:root {
  --mobile-bg: #030713;
  --mobile-shell: linear-gradient(
    180deg,
    #101735 0%,
    #050910 65%,
    #020306 100%
  );
  --mobile-card: rgba(13, 18, 36, 0.94);
  --mobile-card-strong: linear-gradient(160deg, #1c2850 0%, #090e1d 75%);
  --mobile-card-soft: rgba(22, 28, 52, 0.85);
  --mobile-border: rgba(255, 255, 255, 0.08);
  --mobile-border-strong: rgba(168, 137, 255, 0.45);
  --mobile-text: #f8f9ff;
  --mobile-muted: rgba(248, 249, 255, 0.7);
  --mobile-pill: rgba(255, 255, 255, 0.08);
  --mobile-accent: #90b6ff;
  --mobile-purple: #a986ff;
  --mobile-pink: #ff89c2;
  --mobile-green: #64dba1;
  --mobile-gold: #ffd68a;
}

/* Light-mode overrides for mobile variables */
[data-theme="light"] body.mobile-app {
  --mobile-bg: #f5f7fa;
  --mobile-shell: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  --mobile-card: #ffffff;
  --mobile-card-strong: linear-gradient(160deg, #ffffff 0%, #f8fbff 75%);
  --mobile-card-soft: #f3f6fb;
  --mobile-border: rgba(26, 26, 46, 0.06);
  --mobile-border-strong: rgba(26, 26, 46, 0.08);
  --mobile-text: #1a1a2e;
  --mobile-muted: rgba(26, 26, 46, 0.6);
  --mobile-pill: rgba(26, 26, 46, 0.04);
  --mobile-accent: #4c6fff;
}

body.mobile-app {
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(94, 113, 255, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% -10%,
      rgba(255, 170, 221, 0.25),
      transparent 50%
    ),
    var(--mobile-bg);
  color: var(--mobile-text);
  font-family:
    "Google Sans",
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Roboto",
    sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0;
  letter-spacing: 0.01em;
}

body.mobile-app .app-sky {
  display: none;
}

body.mobile-app .app-shell {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0; /* Kein Gap - verhindert Hintergrund-Schlitze */
}

body.mobile-app .app-main {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0; /* Kein Gap - verhindert Hintergrund-Schlitze */
}

body.mobile-app .app-topbar {
  position: static;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

body.mobile-app #settingsBtn {
  align-self: flex-end;
  border-radius: 999px;
  border: 1px solid var(--mobile-border);
  background: var(--mobile-pill);
  width: 44px;
  height: 44px;
  font-size: 1.15rem;
}

body.mobile-app .topbar-location {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.15rem;
  background: var(--mobile-card-strong);
  /* box-shadow entfernt, damit kein dunkler Balken mehr entsteht */
}

body.mobile-app .topbar-location p {
  font-size: 1.1rem;
  font-weight: 600;
}

body.mobile-app .topbar-location small {
  color: var(--mobile-muted);
}

body.mobile-app .topbar-actions {
  display: flex;
  gap: 0.5rem;
  align-self: flex-end;
}

body.mobile-app .icon-btn.ghost {
  border-radius: 999px;
  border: 1px solid var(--mobile-border);
  background: var(--mobile-pill);
  color: var(--mobile-text);
  width: 42px;
  height: 42px;
}

body.mobile-app .search-hub {
  background: transparent;
  border: none;
  padding: 0;
  gap: 0.85rem;
}

body.mobile-app .search-input-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin: 2px;
}

body.mobile-app .search-input-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 100%
  );
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

body.mobile-app .search-input-group:focus-within {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.28) 100%
  );
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

body.mobile-app .search-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.75rem 0;
  color: var(--mobile-text);
  font-size: 1rem;
  font-weight: 500;
}

body.mobile-app .search-input-group input::placeholder {
  color: var(--mobile-muted);
}

body.mobile-app .search-input-group button {
  flex-shrink: 0;
  width: auto;
  min-width: 56px;
  height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(60, 60, 60, 0.9) 0%,
    rgba(40, 40, 40, 0.95) 100%
  );
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

body.mobile-app .search-input-group button:active {
  transform: scale(0.96);
  background: linear-gradient(
    135deg,
    rgba(80, 80, 80, 0.95) 0%,
    rgba(50, 50, 50, 1) 100%
  );
}

body.mobile-app .surface-card,
body.mobile-app .surface-card,
body.mobile-app .card-section {
  background: var(--mobile-card);
  border-radius: 30px;
  border: 1px solid var(--mobile-border);
  padding: 1.25rem;
  /* box-shadow entfernt, damit kein dunkler Balken mehr entsteht */
}

body.mobile-app .hero-card {
  padding: 1.65rem 1.5rem;
  background: var(--mobile-card-strong);
  border: 1px solid var(--mobile-border-strong);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

body.mobile-app .hero-top {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

body.mobile-app .hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.mobile-app .location-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

body.mobile-app .hero-temperature {
  font-size: clamp(4rem, 11vw, 4.8rem);
  font-weight: 600;
}

body.mobile-app .hero-meta span,
body.mobile-app .hero-meta small {
  color: var(--mobile-muted);
}

body.mobile-app .hero-visual {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.35);
}

body.mobile-app .hero-icon .wx-icon,
body.mobile-app .hero-icon img {
  width: 96px;
  height: 96px;
}

body.mobile-app .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body.mobile-app .tonal-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

body.mobile-app .weather-details,
body.mobile-app .hero-details,
body.mobile-app .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

body.mobile-app .detail-item,
body.mobile-app .stat-pill {
  background: var(--mobile-card-soft);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

body.mobile-app .stat-pill {
  text-align: center;
  padding: 1.05rem;
  min-height: 110px;
  justify-content: center;
  gap: 0.4rem;
}

body.mobile-app .stat-pill strong {
  font-size: 1.25rem;
}

body.mobile-app .frog-stage {
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(123, 161, 255, 0.18),
      transparent 65%
    ),
    rgba(7, 9, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.15rem 1rem;
  /* box-shadow entfernt, damit kein dunkler Balken mehr entsteht */
}

body.mobile-app .frog-pond {
  height: 170px;
  margin-bottom: 0.65rem;
  background: linear-gradient(180deg, #101c3b 0%, #081024 60%, #050810 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.mobile-app .frog-sway {
  animation: frogFloat 3s ease-out infinite;
}

body.mobile-app .frog-seat {
  background: linear-gradient(90deg, #4a5f93, #2d3a63);
}

body.mobile-app .frog-body {
  width: 94px;
  height: 74px;
  background: linear-gradient(180deg, #78e0a7 0%, #38a96a 90%);
}

body.mobile-app .frog-eye {
  width: 24px;
  height: 24px;
}

body.mobile-app .frog-pupil {
  width: 9px;
  height: 9px;
  background: #03070f;
}

body.mobile-app .frog-hand,
body.mobile-app .frog-feet {
  background: #2f8b58;
}

body.mobile-app .frog-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--mobile-muted);
}

@keyframes frogFloat {
  0%,
  100% {
    transform: translateX(-50%) rotate(3deg);
  }
  50% {
    transform: translateX(-50%) rotate(-2deg);
  }
}

body.mobile-app .section-headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

body.mobile-app .overview-card,
body.mobile-app .overview-shell,
body.mobile-app #daily-overview {
  width: 100%;
}

body.mobile-app .overview-shell {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

body.mobile-app .overview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

body.mobile-app .overview-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 18px;
  color: var(--mobile-muted);
}

body.mobile-app .climate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.mobile-app .climate-card {
  border-radius: 28px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

body.mobile-app .climate-card[data-accent="plum"] {
  background: linear-gradient(
    145deg,
    rgba(120, 88, 198, 0.4),
    rgba(10, 12, 28, 0.85)
  );
}

body.mobile-app .climate-card[data-accent="ocean"] {
  background: linear-gradient(
    150deg,
    rgba(80, 134, 255, 0.35),
    rgba(9, 15, 28, 0.85)
  );
}

body.mobile-app .climate-card[data-accent="amber"] {
  background: linear-gradient(
    150deg,
    rgba(255, 210, 125, 0.35),
    rgba(12, 12, 22, 0.85)
  );
}

body.mobile-app .insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.mobile-app .insight-card {
  border-radius: 24px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

body.mobile-app .hourly-card,
body.mobile-app .forecast-card,
body.mobile-app .hourly-block,
body.mobile-app .forecast-pill-section {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

body.mobile-app .hourly-block {
  background: var(--mobile-card);
  border-radius: 30px;
  border: 1px solid var(--mobile-border);
  padding: 1.15rem 1rem;
}

body.mobile-app .hourly-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

body.mobile-app .hourly-item {
  min-width: 90px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Light-mode adjustments for hourly items so content is visible on white */
[data-theme="light"] body.mobile-app .hourly-item {
  background: #f6f8fb;
  border: 1px solid rgba(26, 26, 46, 0.06);
  color: var(--mobile-text);
}

[data-theme="light"] body.mobile-app .hourly-item .hourly-item__temp,
[data-theme="light"] body.mobile-app .hourly-item .hourly-item__time,
[data-theme="light"] body.mobile-app .hourly-item .hourly-item__precip {
  color: var(--mobile-text);
}

body.mobile-app .hour-icon,
body.mobile-app .hourly-item img {
  width: 42px;
  height: 42px;
  margin: 0 auto;
}

body.mobile-app .forecast-pill-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

body.mobile-app .forecast-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.mobile-app .forecast-pill {
  border-radius: 26px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

body.mobile-app .forecast-pill.is-active {
  border-color: rgba(144, 182, 255, 0.8);
  background: rgba(144, 182, 255, 0.08);
}

body.mobile-app .forecast-pill-temps {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

/* Light-mode inner forecast pill adjustments on mobile */
[data-theme="light"] body.mobile-app .forecast-pill-temps {
  background: rgba(0, 0, 0, 0.02);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
}

[data-theme="light"] body.mobile-app .forecast-pill-temps span {
  color: var(--mobile-text);
}

[data-theme="light"] body.mobile-app .forecast-pill-icon-wrap {
  background: transparent;
}

body.mobile-app .forecast-pill-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
}

body.mobile-app .forecast-pill-precip {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--mobile-muted);
}

body.mobile-app .forecast-pill-label {
  text-align: right;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: var(--mobile-muted);
}

body.mobile-app .grid,
body.mobile-app .hero-grid,
body.mobile-app .detail-grid,
body.mobile-app .map-alerts-grid,
body.mobile-app .history-analytics-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.mobile-app .map-panel,
body.mobile-app .alerts-panel,
body.mobile-app .historical-panel,
body.mobile-app .analytics-panel-container,
body.mobile-app .info-card {
  border-radius: 30px;
}

body.mobile-app .app-footer {
  display: none;
}

/* Weather Cards Grid - Mobile Anpassungen */
body.mobile-app .weather-cards-grid {
  padding-bottom: var(--space-l);
}

body.mobile-app .weather-card-wrapper--wide {
  min-height: auto;
  height: auto;
}

body.mobile-app .weather-card--pollen {
  height: auto;
  min-height: auto;
  padding: 12px 14px 16px;
}

body.mobile-app .weather-card__pollen-grid {
  padding-bottom: 8px;
}

body.mobile-app .pollen-gauge svg {
  width: 36px;
  height: 36px;
}

body.mobile-app .toast-stack {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 360px);
  z-index: 9999;
}

/* ========================================
   HEALTH PAGE - MOBILE RESPONSIVE FIXES
   ======================================== */

/* Main Grid */
body.mobile-app .health-view-grid {
  gap: 12px;
  padding: 0 4px;
}

/* Alerts Section */
body.mobile-app .health-alerts-section {
  border-radius: 16px;
  padding: 12px;
  margin: 0;
}

body.mobile-app .health-alerts-header {
  margin-bottom: 10px;
}

body.mobile-app .health-alerts-header h3 {
  font-size: 0.9rem;
}

body.mobile-app .health-alerts-empty {
  padding: 16px;
}

body.mobile-app .health-alerts-empty__icon {
  font-size: 1.8rem;
}

body.mobile-app .health-alerts-empty p {
  font-size: 0.85rem;
}

body.mobile-app .health-alert-card {
  padding: 10px;
  gap: 10px;
}

body.mobile-app .health-alert-card__icon {
  font-size: 1.2rem;
}

body.mobile-app .health-alert-card__header strong {
  font-size: 0.85rem;
}

body.mobile-app .health-alert-card__time {
  font-size: 0.7rem;
}

body.mobile-app .health-alert-card__description {
  font-size: 0.78rem;
  line-height: 1.3;
}

/* Cards Section */
body.mobile-app .health-cards-section {
  border-radius: 16px;
  padding: 12px;
}

body.mobile-app .health-cards-header {
  margin-bottom: 12px;
}

body.mobile-app .health-cards-header h3 {
  font-size: 0.9rem;
}

/* Cards Grid - 2 columns on mobile */
body.mobile-app .health-cards-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* Individual Cards */
body.mobile-app .health-metric-card {
  min-height: 100px;
  padding: 10px 8px;
  border-radius: 25px;
}

body.mobile-app .health-metric-card__header {
  gap: 4px;
  margin-bottom: 6px;
}

body.mobile-app .health-metric-card__icon {
  font-size: 0.95rem;
}

body.mobile-app .health-metric-card__label {
  font-size: 0.7rem;
}

body.mobile-app .health-metric-card__value {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

body.mobile-app .health-metric-card__sublabel {
  font-size: 0.62rem;
  line-height: 1.2;
}

/* Timeline Section */
body.mobile-app .health-timeline-section {
  border-radius: 16px;
  padding: 12px;
}

body.mobile-app .health-timeline-header {
  margin-bottom: 12px;
}

body.mobile-app .health-timeline-header h3 {
  font-size: 0.9rem;
}

body.mobile-app .health-timeline-sublabel {
  font-size: 0.68rem;
}

body.mobile-app .health-timeline-chart {
  height: 130px;
  padding-bottom: 38px;
  gap: 3px;
}

body.mobile-app .health-timeline-bar {
  min-width: 22px;
}

body.mobile-app .health-timeline-bar__fill {
  width: 14px;
}

body.mobile-app .health-timeline-bar__value {
  font-size: 0.55rem;
}

body.mobile-app .health-timeline-bar__time {
  font-size: 0.5rem;
  bottom: -28px;
}

body.mobile-app .health-timeline-legend {
  gap: 6px;
  font-size: 0.6rem;
  margin-top: 6px;
}

/* Extra small screens (< 380px) */
@media (max-width: 380px) {
  body.mobile-app .health-metric-card {
    min-height: 90px;
    padding: 8px 6px;
  }

  body.mobile-app .health-metric-card__value {
    font-size: 1.15rem;
  }

  body.mobile-app .health-metric-card__label {
    font-size: 0.65rem;
  }

  body.mobile-app .health-metric-card__sublabel {
    font-size: 0.58rem;
  }

  body.mobile-app .health-timeline-bar {
    min-width: 18px;
  }

  body.mobile-app .health-timeline-bar__fill {
    max-width: 14px;
  }
}

/* ============================================
   SETTINGS PAGE - COMPACT LIST STYLE
   ============================================ */

body.mobile-app .settings-home {
  padding: 0 0 100px 0;
  gap: 0;
}

body.mobile-app .settings-row {
  padding: 14px 16px;
  gap: 14px;
  background: rgba(18, 24, 38, 0.85);
}

/* Light mode overrides for settings list on mobile */
[data-theme="light"] body.mobile-app .settings-row {
  background: #f6f8fb;
}

[data-theme="light"] body.mobile-app .settings-row:hover {
  background: #eef3f8;
}

[data-theme="light"] body.mobile-app .settings-row__title {
  color: var(--mobile-text);
}

[data-theme="light"] body.mobile-app .settings-row__subtitle {
  color: var(--mobile-muted);
}

[data-theme="light"] body.mobile-app .settings-row__icon svg {
  color: rgba(26, 26, 46, 0.65);
}

body.mobile-app .settings-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

body.mobile-app .settings-row__icon svg {
  /* box-shadow entfernt, damit kein dunkler Balken mehr entsteht */
  height: 20px;
}

body.mobile-app .settings-row__title {
  font-size: 15px;
  font-weight: 500;
}

body.mobile-app .settings-row__subtitle {
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
}

body.mobile-app .settings-row__chevron {
  width: 18px;
  height: 18px;
}

/* Extra small screens */
@media (max-width: 380px) {
  body.mobile-app .settings-row {
    padding: 12px 14px;
    gap: 12px;
  }

  body.mobile-app .settings-row__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  body.mobile-app .settings-row__icon svg {
    width: 18px;
    height: 18px;
  }

  body.mobile-app .settings-row__title {
    font-size: 14px;
  }

  body.mobile-app .settings-row__subtitle {
    font-size: 11px;
  }
}

/* Fix für Notch: Searchbar mit Breathing Room */
.app-bar {
  /* Margin-Top wird in style.css gesetzt mit safe-area-inset */
  height: auto;
  min-height: auto;
  z-index: 1;
}

/* Inhalt braucht kein padding-top mehr - App-Bar ist jetzt statisch im Dokumentenfluss */
.app-main-views {
  padding-top: 0 !important;
}

/* Hintergrund-Konsistenz für die gesamte App */
body.mobile-app,
body.mobile-app .app-shell {
  background: var(--page-bg, #2a2030);
  background-attachment: fixed;
  min-height: 100%;
  height: auto;
}

/* .app-bar--scrolled wurde entfernt - App-Bar scrollt jetzt mit dem Content */
