
.carousel-table {
    width: 100%;
    max-width: 100%; /* Ограничение ширины таблицы */
    border-collapse: collapse;
    margin: 0 auto;
}

.carousel-table td {
    padding: 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: space-around;
}

.carousel-slide img {
    max-width: 100px; /* Максимальная ширина картинки */
    max-height: 100px; /* Максимальная высота картинки */
    object-fit: contain; /* Сохранение пропорций */
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.carousel-slide img:hover {
    filter: grayscale(0%);
}

.carousel-slide a {
    text-decoration: none;
}
