.accordion {
    width: 100%; /* Szuflady zajmują całą szerokość */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: none; /* Usuwa dolną granicę ostatniego elementu */
}

.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #ddd;
}

.accordion-content {
    max-height: 0; /* Początkowo ukrywa treść */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Płynne przejście */
    padding: 0 15px;
}

.accordion-content.open {
    max-height: 600px; /* Wysokość wystarczająca, aby pokazać całą treść */
    padding: 15px;
}