/* =====================================================================
 * VIVI IN DUE — Touch Debug Overlay Styles
 *
 * Pannello debug per investigare pinch zoom iPhone. Caricato solo se
 * ?touchdebug=1 attivo (touch-debug.js controlla l'attivazione).
 * ===================================================================== */

#touch-debug-panel {
    position: fixed;
    top: max(60px, env(safe-area-inset-top, 0px));
    left: 8px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    color: #4ade80;
    padding: 8px 10px;
    border-radius: 8px;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 11px;
    line-height: 1.35;
    max-width: 240px;
    pointer-events: none;
    white-space: pre;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

#touch-debug-panel #td-stats {
    color: #4ade80;
    font-weight: 700;
    margin-bottom: 6px;
}

#touch-debug-panel #td-log {
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
}
