@charset "utf-8";
.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 0px;
	padding-left: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion p {
}


.active, .accordion:hover {
  background-color: #ccc;
}

/* Symbol für das Öffnen und Schließen */
.accordion::after {
  content: '\25B6'; /* Pfeil nach rechts */
  color: #777;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.active::after {
  transform: rotate(90deg); /* Dreht den Pfeil nach unten */
}

.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	margin-top: 2px;
	margin-bottom: 2px;
	padding-top: 0;
	padding-right: 18px;
	padding-bottom: 0;
	padding-left: 18px;
}
