.carousel-control-next img,
.carousel-control-prev img {
    height: 30px !important;
    width: 30px !important;
    position: absolute;
}

.carousel-control-next img {
    rotate: 180deg !important;
}

/* Ajustes para pantallas grandes */
@media (min-width: 992px) {
    .carousel-control-next img {
        right: -50px !important;
        rotate: 180deg !important;
    }

    .carousel-control-prev img {
        left: -50px !important;
    }
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .carousel-control-next img {
        right: -10px !important;
        height: 25px !important;
        width: 25px !important;
        rotate: 180deg !important;
    }

    .carousel-control-prev img {
        left: -10px !important;
        height: 25px !important;
        width: 25px !important;
    }
}