#main-image {
    width: 600px;
    height: 400px;
    border: 5px solid white;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: all 0.5s;
    scrollbar-width: thin;
    scrollbar-color: #888 #fff;
}

#thumbnails {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    /*
    display: flex;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    */
}

#thumbnails img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
}

#thumbnails img.active {
    border-color: #00f0ff;
}

#image-caption {
    border-top: solid 1px #ccc;
    margin-top: -50px;
    padding-top: 10px;
    font-size: 18px;
    color: #ccc;
}


.scrollable-div::-webkit-scrollbar {
  height: 8px; /* for horizontal scrollbars */
  width: 8px;  /* for vertical scrollbars */
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #888; 
  border-radius: 4px;
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}



/* Scrollbar styles 
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}*/