/* ==========================================================
   ALAP
   ========================================================== */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    color: #d9d1c5;
    font-size: 35px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding: 12px;
    border-style: none;
    margin: 12px auto 8px auto;
    width: 200px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

/* ==========================================================
   TÁBLÁZAT KÜLSŐ KERET – KÖZÉPRE IGAZÍTÁS
   ========================================================== */

.tablazatdoboz-kulso {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10px 30px 10px;
    box-sizing: border-box;
    overflow-x: auto; /* vízszintes görgetés, ha nem fér el */
}

/* ==========================================================
   TÁBLÁZAT DOBOZ
   ========================================================== */

.tablazatdoboz {
    border-style: none;
    border-color: black;
    background-color: rgb(209, 204, 204);
    position: relative;
    z-index: 10;
    /* Teljes képernyőn fix szélesség, mobilon auto */
    width: fit-content;
    max-width: 100%;
}

/* ==========================================================
   TÁBLÁZAT
   ========================================================== */

table {
    margin: 0 auto;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    width: auto;
    height: auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    height: 70px;
    width: 220px;
    padding: 0;
}

/* ==========================================================
   VÁZLAT KÁRTYÁK (eredeti kinézet megtartva)
   ========================================================== */

.vazlat-kontener {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.vazlat-hatter {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: rgba(64, 137, 128, 0.3);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    height: fit-content;
}

.vazlat-tartalom {
    position: relative;
    z-index: 2;
}

.vazlat-tartalom p {
    margin: 0;
    padding: 4px 2px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

/* ==========================================================
   ASZTALI NÉZET – középre igazítás, fix cellák
   ========================================================== */

@media screen and (min-width: 769px) {
    th, td {
        height: 70px;
        width: 220px;
    }

    .tablazatdoboz {
        width: 1540px; /* 7 × 220px + határok */
        max-width: calc(100vw - 20px);
    }
}

/* ==========================================================
   MOBIL NÉZET – összecsúszó, teljes szélességű táblázat
   ========================================================== */

@media screen and (max-width: 768px) {

    .tablazatdoboz-kulso {
        padding: 0 4px 20px 4px;
        justify-content: flex-start; /* görgethetőség miatt */
    }

    .tablazatdoboz {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        width: 100%;
        font-size: 10px;
        table-layout: fixed;
    }

    th, td {
        /* Mobilon kisebb cellák, hogy beleférjen a képernyőre */
        width: calc((100vw - 8px) / 7);
        min-width: 44px;
        height: 50px;
        padding: 1px;
    }

    .vazlat-hatter {
        font-size: 9px;
    }

    .vazlat-tartalom p {
        font-size: 8px;
        padding: 1px;
        word-break: break-word;
        hyphens: auto;
    }

    h1 {
        font-size: 16px;
        width: auto;
        padding: 8px;
    }
}

/* ==========================================================
   AKTÍV MENÜPONT KIEMELÉS
   ========================================================== */

.aktiv-menu .lenyilospacer {
    color: #f5dfa0 !important;
    border-bottom: 2px solid rgba(220, 185, 130, 0.9);
}