.filmstrip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%; /* Adjust the width as needed */
    margin: auto;
    overflow: hidden;
    padding: 5%;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: var(--alternate);
}

.filmstrip {
    overflow: hidden; /* Hides extra images outside the container */
    width: 100%; /* Ensure it fits inside the container */
}

.filmstrip-track {
    display: flex; /* Align images side by side in a row */
    transition: transform 0.5s ease; /* Smooth sliding effect */
}

.filmstrip-track img {
    width: 50%; /* Set image size */
    margin: 0 10px; /* Space between images */
    flex-shrink: 0; /* Prevent images from shrinking */
    border: 2px solid #ddd; /* Optional: Add a border to mimic a filmstrip look */
    border-radius: 25px; /* Optional: Rounded corners */
}

.filmstrip-viewport {
    overflow: hidden; /* Hide overflow to create a sliding effect */
    width: 100%; /* Full width of the container */
    position: relative;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 15px;
    background-color: var(--alternate);
    padding-bottom: 10%;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #4CAF50; /* Highlight the active dot */
}