/* Carrousel logos partenaires */
.logo-carousel-wrapper {
    position: relative;
    padding: 0 40px; /* Espace pour les flèches */
}

.logo-carousel .logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.logo-carousel .logo-img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

/* Styles pour les flèches personnalisées */
.custom-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none; /* Les boutons restent cliquables mais ce wrapper ne bloque pas */
}

.custom-prev, .custom-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1); /* Changé: plus clair comme Bootstrap */
    color: #000; /* Changé: noir comme Bootstrap */
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto; /* Rendre les boutons cliquables */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Changé: transition sur 'all' */
}

.custom-prev:hover, .custom-next:hover {
    background: rgba(0, 0, 0, 0.2); /* Changé: plus foncé au survol comme Bootstrap */
}



/* Responsive pour mobile */
@media (max-width: 767px) {
    .logo-carousel-wrapper {
        padding: 0 30px;
    }

    .custom-prev {
        left: -15px;
    }

    .custom-next {
        right: -15px;
    }
}

.control-logo-carousel{
    background-color: rgba(101, 94, 94, 0.186)!important;
}