:root { --bg: #0f172a; --glass: rgba(30, 41, 59, 0.8); --accent: #38bdf8; --danger: #ef4444; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
body { background: var(--bg); color: white; height: 100vh; overflow: hidden; }
.lobby-overlay { position: fixed; inset: 0; background: radial-gradient(circle, #1e293b, #0f172a); display: flex; align-items: center; justify-content: center; z-index: 2000; overflow-y: auto; }
.wide-card { width: 95% !important; max-width: 600px !important; margin: 20px; }
.prog-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; background: rgba(0,0,0,0.3); padding: 15px; border-radius: 12px; margin: 15px 0; }
.prog-box select, .prog-box input { background: #111; border: 1px solid #444; color: white; padding: 10px; border-radius: 8px; }
.table-container { max-height: 200px; overflow-y: auto; margin: 15px 0; background: rgba(0,0,0,0.2); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th { background: #1e293b; padding: 10px; position: sticky; top: 0; }
td { padding: 8px; border-bottom: 1px solid #334155; text-align: center; }
.del-btn { background: var(--danger); border: none; color: white; padding: 4px 8px; border-radius: 4px; cursor: pointer; }
.random-pin-area { background: #000; padding: 8px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.lobby-inputs.row { display: flex; gap: 10px; margin-top: 10px; }
@media (max-width: 600px) { .lobby-inputs.row { flex-direction: column; } .wide-card { padding: 20px; } }