#udaf-ja-slider {
    max-width: 800px;
    margin: 0 auto;
}

.swiper-slide {
    transition: all 0.3s ease !important;
    opacity: 0.7 !important;
    transform: scale(0.8) !important;
}

.swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    z-index: 10 !important; /* Ensure it appears above others */
}

.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 24px;
    color: white;
}

#udaf-ja-valider {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
}

.caption {
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width: 767px) {
    .caption h5 {
        font-size: 14px;
        line-height: 1.2;
    }
} 