:root {
    --primary: #2c3e50; 
    --accent: #e67e22; 
    --concrete: #ecf0f1;
    --text: #333;
    --green: #27ae60;
    --red: #c0392b;
}

body { font-family: 'Roboto', sans-serif; margin: 0; background-color: var(--concrete); overflow: hidden; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; margin: 0; }

/* HERO & PUBLIC PAGE (aus vorherigem Code übernehmen, hier nur Dashboard Relevantes) */
.dashboard-body { height: 100vh; display: flex; flex-direction: column; background: #34495e; }

/* HEADER */
.dashboard-header { background: var(--accent); padding: 0 20px; height: 60px; display: flex; justify-content: space-between; align-items: center; color: white; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
#timer { font-size: 2rem; font-weight: bold; font-family: monospace; }

/* TEAMS DISPLAY */
.teams-container { display: flex; flex: 1; gap: 15px; padding: 15px; overflow: hidden; }
.team-card { flex: 1; background: white; border-radius: 8px; padding: 15px; display: flex; flex-direction: column; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.team-card h2 { color: var(--primary); font-size: 1.1rem; border-bottom: 2px solid var(--accent); padding-bottom: 5px; margin-bottom: 5px; }
.ceo-badge { font-size: 0.8rem; color: #7f8c8d; margin-bottom: 10px; }
.money-display { font-size: 3rem; font-weight: bold; color: var(--green); text-align: center; margin: 10px 0; font-family: monospace; }
.money-display.debt { color: var(--red); }
.inventory-title { font-weight: bold; font-size: 0.9rem; margin-top: 10px; text-decoration: underline; }
.inventory { list-style: none; padding: 0; margin: 5px 0 0 0; overflow-y: auto; flex: 1; font-size: 0.85rem; }
.inventory li { display: flex; justify-content: space-between; border-bottom: 1px solid #eee; padding: 4px 0; }

/* ADMIN PANEL (NEU) */
.admin-panel { height: 220px; background: #222; border-top: 5px solid var(--accent); padding: 10px; display: flex; gap: 15px; color: white; }

.panel-section { background: rgba(255,255,255,0.05); padding: 10px; border-radius: 5px; display: flex; flex-direction: column; }
.panel-section h3 { font-size: 0.9rem; color: #ccc; margin-bottom: 8px; }

/* 1. Selection */
.selection-area { width: 180px; }
#team-select { width: 100%; height: 100%; background: #333; color: white; border: 1px solid #555; font-size: 1rem; cursor: pointer; }
#team-select option:checked { background: var(--accent); }

/* 2. Bank */
.bank-area { width: 180px; justify-content: center; }
.input-row { display: flex; gap: 5px; margin-bottom: 5px; }
#money-amount { width: 80px; padding: 5px; border-radius: 3px; border: none; font-weight: bold; }
.btn-deposit { flex: 1; background: var(--green); border: none; color: white; border-radius: 3px; cursor: pointer; font-weight: bold; }
.bank-area small { font-size: 0.7rem; color: #aaa; text-align: center; }

/* 3. Shop Grid */
.shop-area { flex: 1; }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; height: 100%; }
.btn-item { background: #3498db; border: none; color: white; border-radius: 4px; cursor: pointer; font-size: 0.85rem; transition: background 0.2s; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.btn-item:hover { background: #2980b9; }
.btn-item:active { transform: scale(0.95); background: var(--accent); }

/* 4. Timer */
.timer-area { width: 80px; gap: 10px; justify-content: center; }
.btn-start { background: var(--green); height: 50%; border: none; color: white; cursor: pointer; font-weight: bold; border-radius: 3px; }
.btn-stop { background: var(--red); height: 50%; border: none; color: white; cursor: pointer; font-weight: bold; border-radius: 3px; }

/* Responsive adjustments for low res beamer */
@media (max-height: 768px) {
    .dashboard-header { height: 40px; }
    #timer { font-size: 1.5rem; }
    .money-display { font-size: 2rem; }
    .admin-panel { height: 200px; }
}