/* Creative Quizzes RTL adjustments */
/* Scope to plugin root to avoid theme-wide impact */

#cq-root {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}

#cq-root input,
#cq-root textarea,
#cq-root select,
#cq-root button {
  direction: rtl;
  text-align: right;
}

/* Use logical properties where feasible so LTR stays fine */
#cq-root .cq-card,
/* Optional: Also ensure panels have no extra vertical space */
#cq-root .cq-panel {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}

#cq-root .cq-row {
  gap: 12px;
}

/* Flip any left/right icons or arrows if present */
#cq-root .icon-arrow {
  transform: scaleX(-1);
}

/* Choice grid alignment */
#cq-root .cq-choices li {
  text-align: right;
}

/* Stats/result alignment */
#cq-root .cq-stats,
#cq-root .cq-result-meta {
  text-align: right;
}
