
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion.open .accordion-content {
  max-height: 1000px; /* Достаточно большое значение */
  padding-top: 1rem;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  font-weight: bold;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  color: #111827;
  border-radius: 0.5rem;
  transition: background 0.3s;
}

.dark .accordion-toggle {
  background: #1f2937;
  color: #f9fafb;
}

.accordion-toggle:hover {
  background: #e5e7eb;
}

.dark .accordion-toggle:hover {
  background: #374151;
}




/* glow-effect */
.glow-effect {
	box-shadow: 0 0 10px rgba(0, 200, 255, 0.6), 0 0 20px rgba(0, 200, 255, 0.4);
}

.collapsed #analysis-history {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsed #history-toggle-icon {
  transform: rotate(-90deg);
}
