.slideshow-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.slideshow-container img {
    max-height: 192px; /* Corrisponde a h-48 in Tailwind */
    object-fit: contain;
}

button {
    font-size: 1rem;
    font-weight: 500;
    display: block !important; /* Forza la visibilità */
}
/*
button svg {
    stroke: white !important;  Forza il colore bianco per le frecce 
}
*/
@media (max-width: 640px) {
    .slideshow-container img {
        max-height: 150px;
    }
    .slideshow-container h3 {
        font-size: 1rem;
    }
    button {
        padding: 0.75rem;
    }
    button svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    .absolute.left-\[-2rem\] {
        left: 0.5rem !important;
    }
    .absolute.right-\[-2rem\] {
        right: 0.5rem !important;
    }
}