.flex-carousel-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

.flex-carousel-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
    font-size: 32px;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-container img {
    height: 60px;
    margin: 0 30px;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.grayscale-enabled .logo-container img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.grayscale-enabled .logo-container img:hover {
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
}

/* jQuery Marquee specific styles */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.js-marquee {
    display: inline-flex;
    align-items: center;
}

.js-marquee-wrapper {
    display: flex;
    align-items: center;
}

/* Pause on hover for jQuery Marquee */
.logo-carousel:hover .js-marquee-wrapper {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}

.logo-carousel .ux-logo {
    margin: 0 30px;
}

/* Add responsive design */
@media (max-width: 768px) {
    .logo-container img {
        height: calc(var(--logo-height, 40px) * 0.8);
        margin: 0 calc(var(--logo-spacing, 50px) * 0.6);
    }
    
    .flex-carousel-container {
        padding: 20px 10px;
    }
    
    .flex-carousel-container h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}
