   .container {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
        }
        #new-carousel-container {
            overflow: hidden;
            position: relative;
        }
        #new-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        #new-carousel-track > div {
            min-width: 100%;
            min-height: 0px;
            background-color: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            color: white;
        }
        #new-carousel-container button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            opacity: 0; /* Buttons are hidden by default */
            transition: opacity 0.3s ease-in-out;
        }
        #new-carousel-container:hover button {
            opacity: 1; /* Buttons appear on hover */
        }
        #new-carousel-container button:first-of-type {
            left: 10px;
        }
        #new-carousel-container button:last-of-type {
            right: 10px;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            #new-carousel-track > div {
                font-size: 16px;
            }
        }