.cikk-container {
   max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1 {
    text-align: center;
    color: #333;
}

.cikk-datum {
    text-align: right;
    color: #333;
}

.cikk-galeria-container {
    margin-bottom: 20px;
}

.cikk-nagy-kep img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    object-fit: contain;
}

.cikk-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.cikk-thumbnails .thumbnail {
    cursor: pointer;
    height: 70px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.cikk-thumbnails .thumbnail.active {
    border-color: #007BFF;
}

.cikk-tartalom {
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
}

/* ===== Dokumentumok (mellékletek) ===== */
.cikk-dokumentumok {
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}

.cikk-dokumentumok h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.cikk-dokumentumok ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cikk-dokumentumok li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    background-color: #fdfdfd;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-left: 4px solid #007BFF;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: background-color 0.3s;
     list-style-type: none;
}

.cikk-dokumentumok li:hover {
    background-color: #f1f9ff;
}

.cikk-dokumentumok a {
    display: flex;
    align-items: center;       /* Így az SVG és a szöveg egy sorban, középen */
    gap: 10px;
    color: #007BFF;
    text-decoration: none;     /* Aláhúzás eltávolítása */
    font-weight: 500;
    word-break: break-word;
}

.cikk-dokumentumok .ikon svg {
    vertical-align: middle; /* vagy próbáld ki a 'sub', 'text-bottom', 'baseline' értékeket */
    /* vagy */
    position: relative;
    top: 3px; /* vagy amennyi kell, hogy lejjebb legyen */
}

/* ===== Mobilnézet ===== */
@media (max-width: 600px) {
    .cikk-container {
        padding: 0 10px;
    }

    .cikk-thumbnails .thumbnail {
        height: 50px;
    }

    .cikk-dokumentumok li {
        flex-direction: row;
        gap: 8px;
        padding: 8px 12px;
    }

    .cikk-dokumentumok svg {
        width: 20px;
        height: 20px;
    }
}
