.themenbaum {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.themen-item {
  background: #fff0;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.themen-item:last-child {
display:none
}

.themen-item .themen-item:last-child {
display:inline-block;
}


.toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  font-weight: bold;
  border: none;
  background: #f4f4f4;
  cursor: pointer;
  font-size: 1.1rem;
}

.themenbaum .toggle {padding: 0.2rem 0.3rem;}
.themenbaum .themenbaum .toggle {padding:0.8rem 1rem;} 
.themenbaum .themenbaum {margin-top:1.1rem;}

.themen-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.themen-content {
  padding: 0.2rem 1.2rem 0.2rem 0.2rem;
}

.themen-content.open {
  max-height: 600px;
  padding: 0.2rem 1.2rem 0.2rem 0.2rem;
}

.kommentar-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #1a73e8;
  text-decoration: none;
}

.kommentar-link:hover {
  text-decoration: underline;
}
.themen-item.open > .toggle {
  background: #ddd;
  font-weight: 700;
}
.comments-inline {
  margin-top: 1rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.comment-form button {
  padding: 0.5rem 1rem;
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.comment-form button:hover {
  background: #1662c1;
}
textarea {height:100px}
.comments-list ul {padding: 0 0 0 0.3rem;}
.comment-item hr {border-color: #1c1c1c42;}
