.aximo-shell {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f7f3 0%, #ece9e1 100%);
}

.aximo-recorder {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: 1.5rem;
  color: #f7f4ec;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #24313a 0%, #162126 100%);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
}

.aximo-recorder__header h1 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.1;
}

.aximo-recorder__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4c985;
}

.aximo-recorder__lede,
.aximo-recorder__hint {
  color: rgba(247, 244, 236, 0.82);
  line-height: 1.45;
}

.aximo-recorder__controls,
.aximo-recorder__panels {
  margin-top: 1.5rem;
}

.aximo-field {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.aximo-field select,
.aximo-button-row button {
  border: 0;
  border-radius: 0.85rem;
  font: inherit;
}

.aximo-field select {
  padding: 0.8rem 0.95rem;
  color: #132026;
  background: #f7f4ec;
}

.aximo-button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.aximo-button-row button {
  padding: 0.85rem 0.95rem;
  font-weight: 700;
  color: #132026;
  background: #f4c985;
  cursor: pointer;
  transition:
    transform 120ms ease,
    opacity 120ms ease,
    background-color 120ms ease;
}

.aximo-button-row button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #ffd79d;
}

.aximo-button-row button:disabled {
  opacity: 0.5;
  cursor: default;
}

.aximo-panel {
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(8, 14, 18, 0.28);
  backdrop-filter: blur(8px);
}

.aximo-panel h2 {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.aximo-panel pre,
.aximo-recorder__hint code {
  font-family:
    ui-monospace,
    "SFMono-Regular",
    "SF Mono",
    Menlo,
    Consolas,
    monospace;
}

.aximo-panel pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: #dbe7e8;
}

.aximo-swagger {
  min-width: 0;
}

#swagger-ui {
  max-width: none;
}

@media (max-width: 1100px) {
  .aximo-shell {
    grid-template-columns: 1fr;
  }

  .aximo-recorder {
    position: relative;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .aximo-recorder {
    padding: 1rem;
  }

  .aximo-button-row {
    grid-template-columns: 1fr;
  }
}
