/* Frontend styles for the accordion */
.ckaccordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  background-color: #fff;
}

.ckaccordion summary {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  list-style: none;
  position: relative;
  transition: background-color 0.2s ease;
}

.ckaccordion summary:hover {
  background-color: #e9ecef;
}

.ckaccordion summary::-webkit-details-marker {
  display: none;
}

.ckaccordion summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: #666;
}

.ckaccordion[open] summary::after {
  content: '-';
}

.ckaccordion[open] summary {
  border-bottom: 1px solid #e0e0e0;
}

.ckaccordion-content {
  padding: 20px;
  color: #444;
  line-height: 1.6;
}

.ckaccordion-content p:last-child {
  margin-bottom: 0;
}
