.cycle-title {
  cursor: pointer;
  font-weight: bold;
  color: #000;
  padding: 5px 10px;
  margin-top: 0;
  border-radius: 6px;
  border-left: 3px solid #ffd140;
  background: linear-gradient(to right, #ffd2404d, #ffb300);
  transition: background 0.2s;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cycle-title:hover {
  background-color: var(--card-hover-bg);
}

.cycle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  margin: 2.5px 0;
}

.cycle.active .cycle-content {
  max-height: 300px;  /* suffisant pour contenir la liste */
  margin-top: 0;
}

.cycle-title::after {
  content: "▸";
  float: right;
  transition: transform 0.3s;
}

.cycle.active .cycle-title::after {
  transform: rotate(90deg);
}