
.carousel-container {
    /* width: 80%; */
    margin: auto;
    overflow: hidden; /* Hides the images that aren't active */
    position: relative;
    border: 5px solid #ddd;
}

.carousel-slide {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out; /* Smooth sliding effect */
}

.carousel-slide img {
    width: 100%; /* Ensures each image takes up the full container width */
    height: auto;
}


/* Button Styling */
/* button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; } */