ul.carousel {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul.carousel li {
    padding: 38px;
    margin: 10px 0;
    border-radius: 8px;
    display: none;
    font-size: 21px;
    color: var(--main1);
    background-image: url('/graphics/apostrophe.png?v=2');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100px;
}

ul.carousel li.active {
    display: block;
    background-color: var(--lila2_tr); /* lila*/
    box-shadow: 32px 32px 0px 0px var(--lila1);  /* lila*/
}

.carousel-controls {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 50px;
}

button:disabled {
    cursor: not-allowed;
}

.carousel-counter {
    text-align: center;
    margin-top: 10px;
    color: #666;
}