/* ---- Alap stílusok a body-ra ---- */
body {
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    background: #000;
    margin: 0;
}

/* ---- Skip link stlíusa ---- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #ffcc00;
    color: black;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

/* ---- Layout: Flexbox elrendezés ---- */
.layout {
    display: flex;
    min-height: 100vh;
}

/* ---- Sidebar stílusok ---- */
.sidebar {
    width: 600px;
    flex-shrink: 0;
}

.sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Main oldal stílusok ---- */
.main-page {
    flex-grow: 1;
    padding: 20px;
    background: linear-gradient(to bottom right, #1a1a1a, #0d0d0d, #000);
}

/* ---- Fejléc stílusok ---- */
header {
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid #ffcc00;
    box-sizing: border-box;
}

/* ---- Navigációs linkek ---- */
nav a {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 5px;
    border: 2px solid #ffcc00;
    transition: all 0.2s ease;
}

nav a:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffcc00;
    border-color: #ffcc00;
}

nav a.active {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    border-color: #ffcc00;
}

/* ---- Main tartalom stílusok ---- */
main p {
    max-width: 60ch;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}

/* ---- Táblázat stílusok ---- */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    margin-top: 40px;
}

th, td {
    padding: 8px;
    text-align: left;
}

thead th {
    border-bottom: 2px solid #ffcc00;
    font-weight: bold;
}

caption {
    font-weight: bold;
    margin-bottom: 10px;
}

/* ---- responzivitás ---- */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
    }

    .sidebar img {
        height: auto;
    }

    .main-page {
        padding: 10px;
    }

    nav a {
        display: inline-block;
        margin-bottom: 5px;
    }
}

/* ---- Nyomtathatóság ---- */
@media print {
    body {
        background: white;
        color: black;
        font-size: 1rem;
        line-height: 1.4;
        margin: 0;
        padding: 0;
    }

    header,
    nav,
    .sidebar,
    .skip-link,
    video {
        display: none !important;
    }

    .main-page {
        padding: 0;
        background: none;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    table {
        margin-top: 1rem;
        border: 1px solid #000;
    }

    th, td {
        border: 1px solid #000;
    }

    a {
        color: black;
        text-decoration: none;
    }

    * {
        background: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}
