﻿/* VIDE Crawler — Dimension Pixel — style-pixel.css */

#game-canvas {
    background: #0d1117;
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    touch-action: none;
}
#game-canvas:active {
    cursor: grabbing;
}

/* Message de salle */
.room-type-bar {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-surface);
    border: var(--border-dark);
    box-shadow: var(--shadow-brutal-sm);
    border-radius: var(--radius-md);
    padding: 7px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    max-width: min(90vw, 420px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.room-type-bar.is-visible { opacity: 1; }
.room-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border: 1.5px solid #111;
    border-radius: 5px;
    font-size: 0.75rem;
    flex-shrink: 0;
}
