/* Subtle polish on top of Tailwind */
html { color-scheme: light; }
body { -webkit-font-smoothing: antialiased; }

/* HTMX request feedback */
.htmx-request { opacity: 0.6; pointer-events: none; }
.htmx-request.htmx-indicator { opacity: 1; }

/* Smoother focus ring */
*:focus-visible {
  outline: 2px solid rgb(16 185 129 / 0.5);
  outline-offset: 2px;
}

/* Prettier scrollbars for textareas */
textarea::-webkit-scrollbar { width: 8px; }
textarea::-webkit-scrollbar-thumb { background: rgb(203 213 225); border-radius: 4px; }
