.change-lang {
    color: white;
    margin-top: 5px;
}

.change-lang:hover {
    color: --bs-orange;
}

/* Carousel container */
.carousel-container {
    overflow: hidden;
    position: relative;
}

/* Main carousel track */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

/* Thumbnails with overlapping style */
.thumbnails {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px; /* Slightly above the bottom of the carousel */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 40px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
    opacity: 1;
    transform: scale(1.2);
    border: 2px solid #007bff;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Navigation buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}