.accordion_header {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.accordion_header::before {
    content: "▶";
    margin-right: 8px;
    transition: transform 0.2s ease-in-out;
}

.accordion_header.active::before {
    content: "▼";
}

.accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

/* Když je aktivní */
.accordion_content.active {
    max-height: 1000px; /* dostatečně vysoké, aby se vešel běžný obsah */
}
