.SF-changelog {
    font-family: 'Arial', sans-serif;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.changelog-item {
    margin-bottom: 15px;
    padding: 0; /* Změněno na 0 pro lepší vzhled */
    border: none; /* Odstraní čáry mezi prvky */
}

.changelog-header {
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    background-color: #e7f1ff;
    border: 1px solid #0056b3;
    transition: background-color 0.3s, color 0.3s;
}

.changelog-header:hover {
    background-color: #d0e7ff;
    color: #004080;
}

.changelog-header::after {
    content: '\25BC';
    font-size: 12px;
    transition: transform 0.3s;
}

.changelog-item.active .changelog-header::after {
    transform: rotate(180deg);
}

.changelog-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 25px; /* Přidá odsazení pro lepší zarovnání textu */
    padding-top: 10px; /* Přidá odsazení nahoře */
}


.changelog-item.active .changelog-content {
    display: block;
    max-height: 1000px; /* Zajištění rozvinutí obsahu */
}

.changelog-item hr {
    display: none; /* Skryje čáry mezi prvky */
}

.SF-changelog-filter {
    margin-bottom: 20px;
    text-align: center;
}

.filter-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.filter-btn:hover {
    background-color: #0056b3;
    color: #fff;
}

.filter-btn.active {
    background-color: #0056b3;
    color: #fff;
}
