.eafe-content-toggle {
  text-align: center;
  font-family: Arial, sans-serif;
}

.eafe-toggle-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
}

.eafe-toggle-switch .toggle-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.eafe-toggle-switch .toggle-btn[aria-expanded="true"] {
  color: #fff;
  background-color: #0073e6;
  border-radius: 5px;
}

.eafe-toggle-content .toggle-panel {
  display: none;
}

.eafe-toggle-content .toggle-panel.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
