/* JIT — Job Interview Tracker
 * Custom overrides — loaded after tailwind.css in base.html.
 */

/* Smooth transitions for HTMX swaps */
.htmx-swapping {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}
.htmx-added {
    opacity: 0;
}
.htmx-added:last-child {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

/* Dark mode: native form controls */
.dark {
    color-scheme: dark;
}
.dark input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #374151 inset !important;
    -webkit-text-fill-color: #f3f4f6 !important;
}
