.slider {
    width: 100%;
    max-width: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.navigation {
    position: relative;
    top: -100px;
    display: flex;
    justify-content: space-between;
}

.navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 5px;
    cursor: pointer;
}

