.custom-carousel-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-carousel-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px; /* Ajusta la altura según lo necesites */
  overflow: hidden;
}

.custom-carousel-item img {
    border-radius: 5px;
    width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

