/* Stili per il frontend del carosello */
.slidehome-carousel {
    max-width: 100%; /* O una larghezza fissa se preferisci */
    margin: 0 auto;
}

.slidehome-item {
    position: relative;
    text-align: center;
    overflow: hidden; /* Per contenere l'immagine */
}

.slidehome-item img {
    width: 100%;
    height: auto;
    display: block;
}

.slidehome-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Sfondo semi-trasparente */
    color: white;
    padding: 15px;
    box-sizing: border-box; /* Include padding nel width */
    text-align: left;
}

.slidehome-caption h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: white; /* Assicurati che il titolo sia leggibile */
}

.slidehome-caption p {
    margin-bottom: 0;
    font-size: 0.9em;
}

/* Stili per la navigazione e i dots di Owl Carousel */
.owl-nav button {
    color: white !important;
    font-size: 2em !important;
    padding: 0 15px !important;
    line-height: 1 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}

.owl-nav button.owl-prev {
    left: 10px;
}

.owl-nav button.owl-next {
    right: 10px;
}

.owl-dots button.owl-dot {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}