/*
Original A.J.Fetczer Code
All rights reserved. This file created: 2026
*/

/* Fix méretezés és alaphelyzetbe állítás */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Sötét háttér a kereten kívül */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* A fő tároló pontosan 800x480 */
.dashboard-container {
    width: 800px;
    height: 480px;
    background-color: #fff;
    display: flex;
    border: 0px solid #000;
    overflow: hidden;
}

/* Bal oszlop felosztása (500px széles) */
.left-panel {
    width: 400px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 10 egységre osztjuk a finom pozicionáláshoz */
    grid-template-rows: 35px 160px 140px 145px; /* Sorok magassága */
    border-right: 1px solid #000;
}

/* Jobb oszlop felosztása (300px széles) */
.right-panel {
    width: 400px;
    height: 100%;
    display: grid;
    grid-template-rows: 264px 216px; /* 12-es és 13-as cella magassága */
}

/* Általános cella stílus */
.cell {
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    background-color: #ffffff;
}

/* Bal oldali rács pontos kiosztása */
/* Első sor */
.c1 { grid-column: span 2; }
.c2 { grid-column: span 5; }
.c3 { grid-column: span 3; }

/* Második sor */
.c4 { grid-column: span 3; }
.c5 { grid-column: span 3; }
.c6 { grid-column: span 4; }

/* Harmadik sor */
.c7 { grid-column: span 1; }
.c8 { grid-column: span 3; }
.c9 { grid-column: span 3; }
.c10 { grid-column: span 3; }

/* Negyedik sor */
.c11 { grid-column: span 10; }

/* Jobb oldali cellák */
.c12 { border-bottom: 1px solid #000; }
.c13 { }