.carousel-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease;
    margin-bottom: 55px;
}

.carousel img {
    width: 100px;
    height: auto;
    object-fit: cover;
    margin-right: 10px;
}

.carousel img.no-active {
    display: none;
}

.highlighted-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.highlighted-image img {
    max-width: 100%;
    max-height: 100%;
}

.prev-button,
.next-button {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.fullscreen img {
    max-width: 100%;
    max-height: 100%;
}