/* Developed by Marcos Muñoz (mmunoz@caldenlabs.com) */
.carousel-container {
    width: 90%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    user-select: none;
    margin-left: 10px;
}

.carousel-slider {
    display: flex;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    display: block;
    height: 200px;
    object-fit: contain;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

.carousel-container.grabbing {
    cursor: grabbing;
}
.carousel-container:not(.grabbing) {
    cursor: grab;
}