.data-container-carousel{
    display: flex;
    flex-direction: row;
    overflow-x: auto; /* allow images to be offscreen and scrollable */
    scroll-snap-type:mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    align-items: center;
}

.data-item{
    scroll-snap-align: start;
}

.data-item img{
    height: 45% !important;
    width: 45% !important;
    
}

li{
    margin-top: 5px;
    margin-bottom: 5px;
}

img{
    margin-top: 5px;
}

.button-holder{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 16px;
}
/* 
    Taken from https://www.cssportal.com/css-scrollbar-generator/ 
*/
/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    height: 5px;
    width: 5px;
  }
  *::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #DFE9EB;
  }
  
  *::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #A0A39B;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: #4E504B;
  }
  
  *::-webkit-scrollbar-thumb:active {
    background-color: #754C4C;
  }

  .scroll-container {
    padding: 0;
  }
  
  .scroll-item {
    margin: 0;
  }