/* ========== GRUNDLAYOUT ========== */
.konto-uebersicht-wrapper {
  max-width: 540px;
  margin: 32px auto 32px auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 32px #0002;
  padding: 0 0 40px 0;
  min-height: unset;
  position: relative;
  border: 1.5px solid #e8f5ec;
}
.konto-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 0 0 0;
}
.logo-konto {
  height: 64px;
  margin: 0 auto 18px auto;
  display: block;
}
.logout-btn {
  background: #fff;
  border: 1.5px solid #e74c3c;
  font-size: 1.3em;
  color: #e74c3c;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 1px 6px #0001;
  transition: background 0.15s, color 0.15s, border 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logout-btn-danger {
  border-color: #e74c3c;
  color: #e74c3c;
}
.logout-btn-danger:hover {
  background: #ffeaea;
  color: #c0392b;
  border-color: #c0392b;
}
.konto-main {
  padding: 0 18px;
}
.konto-illustration {
  text-align: center;
  margin: 18px 0 0 0;
}
.konto-welcome {
  text-align: center;
  margin: 18px 0 18px 0;
}
.konto-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .konto-cards-grid {
    grid-template-columns: 1fr;
  }
}
.konto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6faf7;
  border-radius: 14px;
  padding: 28px 10px 18px 10px;
  font-size: 1.1em;
  font-weight: 600;
  color: #1d5c46;
  text-decoration: none;
  box-shadow: 0 1px 6px #0001;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
  min-height: 90px;
  position: relative;
}
.konto-card:hover {
  background: #e8f5ec;
  color: #29523c;
  box-shadow: 0 2px 12px #0002;
}
.konto-card-icon {
  font-size: 2.1em;
  margin-bottom: 8px;
}
.konto-card-danger {
  background: #fff0f0;
  color: #e74c3c;
}
.konto-card-danger:hover {
  background: #ffeaea;
  color: #c0392b;
}
.konto-card-primary {
  background: #e8f5ec;
  color: #1d5c46;
}
.konto-card-secondary {
  background: #f0f4f8;
  color: #29523c;
}
.konto-card-info {
  background: #f6faf7;
  color: #29523c;
  text-align: center;
  font-size: 1.1em;
  padding: 18px 10px;
}
body {
  margin: 0;
  padding: 0;
  background-color: #fdf6ee;
  font-family: sans-serif;
  color: #224f35;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ========== HILFE-BUTTON OBEN RECHTS ========== */
.top-bar {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.hilfe-link {
  text-decoration: none;
  color: #224f35;
  font-weight: bold;
  font-size: 0.9rem;
}

/* ========== Schliessen - Button oben links ========== */
.close-button {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.4rem;
  color: #224f35;
  text-decoration: none;
  font-weight: bold;
}
.close-button:hover {
  text-decoration: underline;
}





/* ========== CONTAINER FÜR INHALTE ========== */
.konto-container {
  max-width: 400px;
  width: 90%;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* ========== LOGO + ILLUSTRATION ========== */
.logo {
  width: 250px;
  margin-bottom: 1rem;
}

.illustration {
  display: block;
  margin: 0 auto 1rem auto;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
}



/* ========== SLOGAN ========== */
.slogan {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #5ca371;
}




/* ========== BUTTONS ========== */
.btn-primary {
  display: block;
  background-color: #224f35;
  color: white;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  margin: 1rem auto 0.5rem;
  width: 100%;
  max-width: 300px;
  font-weight: bold;
}

.btn-link {
  display: inline-block;
  text-decoration: underline;
  color: #a66e3c;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.benachrichtigung-tabs {
  display: flex;
  justify-content: center;
  /* ...restliche Eigenschaften... */
}

@media (max-width: 600px) {
  .benachrichtigung-tabs {
    flex-direction: row;
    justify-content: center;
    /* ...restliche Eigenschaften... */
  }
}

 