/* VertiAds AI — minimal custom styles */

/* HTMX loading indicator */
.htmx-indicator {
  display: none;
}
.htmx-request .htmx-indicator {
  display: inline-flex;
}
.htmx-request.htmx-indicator {
  display: inline-flex;
}

/* Report iframe resize */
iframe {
  display: block;
}

/* Smooth transitions on HTMX swaps */
[hx-swap],
[data-hx-swap] {
  transition: opacity 0.15s ease;
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Code / mono elements */
code {
  font-size: 0.8em;
  background: #f3f4f6;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: #374151;
}

/* Focus ring normalization */
:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
