.oz-faq-list {  }
.oz-faq-item { margin-bottom: 1px; }
.oz-faq-question {
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  background: #fff;
  transition: background 0.3s ease;
}
.oz-faq-question:hover {
  background: #e0e0e0;
}
.oz-faq-answer {
  padding: 0.25rem 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.wp-block[data-type="ozwebexpert/faq"] textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  resize: vertical;
}

/* Always show in editor */
.wp-block[data-type="ozwebexpert/faq"] .oz-faq-answer {
  display: block;
  max-height: none;
  opacity: 1;
  overflow: visible;
}

/* On frontend, hidden by default */
.oz-faq-list .oz-faq-answer {
  display: block;
}

/* Reveal answer when open */
.oz-faq-list .oz-faq-answer.open {
  max-height: 500px;
  opacity: 1;
  overflow: visible;
}

.oz-faq-block .components-button {
  margin-top: 1rem;
}

body[data-theme="dark"] .oz-faq-question {
  background: #2c4c9a;
  color: #fff;
}
body[data-theme="dark"] .oz-faq-question:hover {
  background: #3959a6;
}
body[data-theme="dark"] .oz-faq-answer {
  color: #fff;
}