/* ── Responsive helpers ────────────────────────────────── */
@media (max-width: 599px) {
    /* Chat : cache la colonne utilisateurs quand une conv est ouverte */
    .chat-users-col.chat-open  { display: none !important; }
    /* Chat : cache le panneau de conv quand aucun user n'est sélectionné */
    .chat-panel-col.list-open  { display: none !important; }

    /* Fenêtre d'appel plein écran sur mobile */
    .call-window {
        width: 100vw !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
    }
}

/* Chat : hauteur adaptée à la barre d'app */
.chat-grid {
    height: calc(100dvh - 64px);
}

@media (max-width: 599px) {
    .chat-grid {
        height: calc(100dvh - 56px);
    }
}
