body {
    background-color: #212529;
}

h1,
h2,
h3,
p,
label {
    color: white;
}

.scroll-banner {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 160s linear infinite;
}

.scroll-inner {
    display: flex;
}

.scroll-inner img {
    width: auto;
    height: 40vh;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*@media (max-width: 768px) {
    .scroll-inner img {
        height: 100vh;
        width: 100vw;
    }
    .scroll-banner {
        height: 100vh;
    }
}*/

#thumbnail-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #888 transparent;
}

/* WebKit scrollbar customization */
#thumbnail-bar::-webkit-scrollbar {
  height: 8px;
}
#thumbnail-bar::-webkit-scrollbar-track {
  background: transparent;
}
#thumbnail-bar::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 4px;
}

