/* Carousel container */
#carousel-container {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Track containing slides */
#carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

/* Individual images */
#carousel-track img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: -10px;
    background: rgba(255,255,255,0);
    color: aliceblue;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
}

#prev { left: 10px; }
#next { right: 10px; }

/* Dots */
#carousel-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

#carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
}

#carousel-dots span.active {
    background: rgba(255,255,255,1);
}
