/* ---------- Routine List ---------- */
.routine-list li {
  padding: 8px 10px;
  margin: 5px 0;
  border-radius: 6px;
  background: #f5f5f5;
  font-family: 'Calibri', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.routine-list li:hover {
  background: #e0e0e0;
}

body.dark .routine-list li {
  background: #333;
}

body.dark .routine-list li:hover {
  background: #444;
}

/* ---------- Routine Timer Display ---------- */
.pom-display {
  font-size: 36px;
  text-align: center;
  margin: 15px 0;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}

body.dark .pom-display {
  background: #222;
  color: #fffeab;
}

/* ---------- Routine Progress Bar ---------- */
#routineProgress {
  height: 12px;
  border-radius: 6px;
  background: #ddd;
  transition: background 0.2s;
}

body.dark #routineProgress {
  background: #555;
}
