<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.carousel {
    position: relative;
    width: 80%;
    margin: 50px auto;
    overflow: hidden;
    border: 2px solid #ccc;
}

.carousel-inner {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    width: 100%;
    flex: 1 0 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
</pre></body></html>