/* ========================================
   Arka Gutenberg Blocks — Frontend Styles
   ======================================== */

/* --- Block placeholder (when no data) --- */
.arka-block-placeholder {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  margin: 32px 0;
}

/* --- Test / Quiz --- */
.arka-test-block {
  direction: rtl;
}
.arka-test-q.correct {
  border-right: 4px solid #00796b;
}
.arka-test-q.incorrect {
  border-right: 4px solid #dc2626;
}
.arka-test-q .arka-test-feedback.show {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: 8px;
}
.arka-test-q.correct .arka-test-feedback {
  background: #e0f2f1;
  color: #00796b;
}
.arka-test-q.incorrect .arka-test-feedback {
  background: #fef2f2;
  color: #dc2626;
}
.arka-test-radio:checked + span {
  color: #00796b;
  font-weight: 700;
}

/* --- Carousel --- */
.arka-carousel-block {
  direction: rtl;
}
.arka-carousel-slide img {
  transition: transform 0.5s ease;
}
.arka-carousel-block:hover .arka-carousel-slide img {
  transform: scale(1.02);
}
.arka-ca-dot.w-5 {
  width: 1.25rem;
}

/* --- Media Box --- */
.arka-media-box audio,
.arka-media-box video {
  display: block;
  width: 100%;
}
.arka-media-box iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.arka-media-box .aspect-\[16\/9\] {
  position: relative;
}

/* --- Audio Player (music player style) --- */
.arka-audio-player {
  direction: ltr;
}
.arka-audio-player audio {
  height: 44px;
  width: 100%;
  display: block;
}
.arka-audio-player audio::-webkit-media-controls-enclosure {
  background: transparent;
  border-radius: 8px;
}
.arka-audio-player audio::-webkit-media-controls-panel {
  background: transparent;
}

/* --- Table Block --- */
.arka-table-block {
  direction: rtl;
}
.arka-table-block .arka-table th,
.arka-table-block .arka-table td {
  white-space: nowrap;
}
.arka-table-block .arka-table td:first-child {
  font-weight: 700;
  color: #1e293b;
}
@media (max-width: 640px) {
  .arka-table-block {
    padding: 8px !important;
  }
  .arka-table-block .arka-table th,
  .arka-table-block .arka-table td {
    padding: 8px !important;
    font-size: 11px !important;
  }
  .arka-table-block .arka-table th:first-child {
    border-radius: 0 !important;
  }
}
