/* Minimal — le gros du style vient de Tailwind CDN */
:root {
    color-scheme: light;
    --pezz-blue: #1F4E78;
    --pezz-blue-light: #D9E1F2;
    --pezz-yellow: #FFF2CC;
}

/* Ligne de tableau modifiable */
tbody tr.editing {
    background: var(--pezz-yellow);
}

/* Focus mieux visible sur inputs */
input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--pezz-blue);
    outline-offset: 1px;
}

/* Scrollbars discrètes */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
