/* Nyomtatási stíluslap - minden oldalra érvényes */
@media print {
    /* Elrejtjük a nem lényeges elemeket */
    header, 
    nav, 
    footer, 
    .btn, 
    .video-container, 
    video,
    iframe, 
    .accessibility-panel, 
    .skip-link,
    details summary {
        display: none !important;
    }

    /* Alap stílusok a nyomtatáshoz */
    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
        padding: 0.5cm !important;
        margin: 0 !important;
    }

    /* Fő tartalom formázása */
    main {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Linkek megjelenítése */
    a {
        color: black !important;
        text-decoration: underline !important;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }

    /* Kártyák formázása */
    .app-card, 
    .category-card, 
    form {
        page-break-inside: avoid;
        break-inside: avoid;
        margin-bottom: 1cm !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        padding: 1rem !important;
        background: white !important;
    }

    /* Képek kicsinyítése */
    img {
        max-width: 50% !important;
        height: auto !important;
        display: block;
        margin: 0.5cm auto !important;
    }

    /* Táblázatok formázása */
    table {
        page-break-inside: avoid;
        break-inside: avoid;
        width: 100% !important;
        margin: 1rem 0 !important;
        border-collapse: collapse !important;
    }

    table, th, td {
        border: 1px solid #ddd !important;
    }

    th, td {
        padding: 0.5rem !important;
        text-align: left !important;
    }

    th {
        background-color: #f2f2f2 !important;
    }

    /* Címek formázása */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        break-after: avoid;
        color: black !important;
    }

    h1 {
        font-size: 18pt !important;
        margin-bottom: 0.5cm !important;
    }

    h2 {
        font-size: 16pt !important;
    }

    /* Figure elemek */
    figure {
        page-break-inside: avoid;
        margin: 1cm 0 !important;
    }

    figcaption {
        font-size: 10pt !important;
        text-align: center !important;
        margin-top: 0.3cm !important;
    }

    /* Űrlap elemek */
    input, 
    textarea, 
    select {
        border: 1px solid #ddd !important;
        background: white !important;
        color: black !important;
    }

    /* Lenyitható tartalmak megjelenítése */
    details {
        display: block !important;
    }

    details > * {
        display: block !important;
    }

    /* Oldaltörések kezelése */
    .page-break {
        page-break-before: always;
    }

    /* Nyomtatási fejléc és lábléc elrejtése */
    @page {
        size: auto;
        margin: 1cm;
    }
}