.apiwizard-container {
  display: flex;
  gap: 0;
  flex-direction: column;
}

.apiwizard-sidebar {
  min-width: 200px;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: row;
}

.apiwizard-tab {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.apiwizard-tab.active {
  position: relative;
  background: var(--e-global-color-vamtam_accent_1);
  font-weight: bold;
  color: #fff;
}

.apiwizard-other {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.apiwizard-content {
  flex: 1;
  padding: 10px;
  background-color: white;
}

.apiwizard-image {
  margin-top: 10px;
}
.apiwizard-tab-content {
  display: none;
}
.apiwizard-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.apiwizard-col {
  flex: 1;
  padding: 10px;
}

.apiwizard-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Ensure image fits */
.apiwizard-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.apiwizard-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .apiwizard-col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .apiwizard-container {
    flex-direction: row !important;
    gap: 30px !important;
  }
  .apiwizard-sidebar {
    flex-direction: column !important;
  }
  .apiwizard-tab.active::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='%23DB221A' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");
    position: absolute;
    right: -37px;
    top: 26px;
    transform: translateY(-50%);
  }
  .apiwizard-content {
    flex: 1;
    padding: 20px !important;
    background-color: white;
  }
}
