/**
 * lib-theme - Toggle theme clair/sombre
 * @author Emmanuel Daunizeau / V-Softs
 * @copyright 2026 All rights reserved
 * @version 1.0.0
 *
 * Style du bouton toggle uniquement.
 * Les variables de couleur (:root / html.light) sont definies par l'app.
 */

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border, #2d2845);
    border-radius: 8px;
    background: var(--card-bg, #1e1b2e);
    color: var(--text-muted, #8b87a0);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    padding: 0;
    line-height: 1;
}

.theme-toggle:hover {
    color: var(--accent, #0d9488);
    border-color: var(--accent, #0d9488);
}
