.recurrence-days {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.recurrence-days > label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.recurrence-day-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.recurrence-checkbox-label {
  cursor: pointer;
  margin: 0;
}

.recurrence-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.recurrence-checkbox-label span {
  display: block;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-background);
  font-size: 0.9rem;
  transition: all 0.15s ease;
}

.recurrence-checkbox-label:hover span {
  border-color: var(--color-blue);
}

.recurrence-checkbox-label input[type="checkbox"]:checked + span {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
}
