/* Custom CSS minimal — Tailwind CDN couvre 99% de la stylisation. */

/* Reset boutons HTML par défaut (Tailwind ne le fait pas tout seul) */
button {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

/* Focus visible accessibilité */
:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Code inline plus lisible */
code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.85em;
}

/* Anti-flash unstyled (Tailwind CDN charge async) */
body { background: #09090b; color: #f4f4f5; }
