 * { box-sizing: border-box; margin: 0; padding: 0; }
        .carousel-wrapper {
            width: 80%;
            max-width: 600px;
            margin: 25px;
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            position: relative;
        }
        .carousel-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel img {
            width: 100%;
            border-radius: 10px;
        }
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            font-size: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 50px;
        }
        .pause {
            position: absolute;
            bottom: 50px; /* Ajuste la position verticale */
            left: 50%; /* Centre horizontalement */
            transform: translateX(-50%); /* Centre le bouton précisément */
            background: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
            color: #fff;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 16px;
        }
        .prev:hover, .next:hover {
            background: rgba(255, 255, 255, 0.8);
            color: black;
        }
        .prev { left: 10px; display: flex; align-items: center; justify-content: center; }
        .next { right: 10px; display: flex; align-items: center; justify-content: center; }