body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #f2f2f2;
  margin: 0;
  padding: 2rem;
  position: relative;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: #1e1e1e;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

h1 {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 0.5rem;
}

.category {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #2a2a2a;
  border-radius: 8px;
}

h2 {
  color: #00aaff;
}

.item {
  margin-top: 0.7rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  background: #4b0000; /* dunkelrot für unchecked */
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  accent-color: #00ff6a;
}

/* Checked grün einfärben */
input[type="checkbox"]:checked + span,
input[type="checkbox"]:checked ~ * {
  color: #d3ffd3;
}

.checkbox-label.checked {
  background: #006b2f; /* grün */
}

/* Fortschrittskreis */
.progress-container {
  position: fixed;
  top: 20px;
  right: 20px;
}

.progress-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(#00ff6a 0deg, #444 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 0 8px rgba(0,255,100,0.4);
  transition: background 0.3s ease;
}

#progress-text {
  position: absolute;
}
