/* Liste der Notes (Übersicht) */
.notes-list {
  margin: 0 auto;
}

.note-excerpt {
  line-height: 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
  padding: 2rem;
}

.note-header {
  padding: 0rem;
}

.note-title-area {
  display: block;
}

.note-excerpt-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}

.toggle-note {
  margin-left: 1rem;
  padding: 0;
  cursor: pointer;
  pointer-events: none;
}

.toggle-note.active {
  transform: rotate(45deg);
}

/* Ausgeklappter Inhalt */
.note-content {
  overflow: hidden;
  transition: height 0.3s ease;
}
