.accordion {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: #f8f9fa;
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: #e9ecef;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.accordion-content iframe {
  width: 100%;
  border: none;
}

/* Tambah icon kecil */
.accordion-header::after {
  content: '+';
  font-size: 18px;
}

.accordion-header.active::after {
  content: '-';
}