/*horizontal scroller*/

#tabbed-nav-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
 
}


.tab {
  display: inline-block;
  margin: 0 10px;
  flex: 0 0 auto;
}

.tab a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #ddd; /* Background color for tabs */
  display: block;
}

.tab a:hover {
  background-color: #bbb;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .tab a {
    padding: 10px;
  }
}
/* Add your CSS styles here */
#tabbed-nav {
    display: flex;
    margin-bottom: 10px;
}

#tabbed-nav .tab {
    padding: 10px;
    cursor: pointer;
   border-radius: 10px;
    margin-right: 5px;
    background-color: #f1f1f1;
}

#tabbed-nav .tab.active {
  background-color: #52b3e6;
	    color: #fff;
	
}

#tabbed-content .images {
    display: none;
}

#tabbed-content .images.active {
    display: block;
}

.gallery{
	display: flex;
}

.gallery li{
	padding: 10px;
}

#tabbed-content  img{
	 max-width: 100%;
    object-fit: cover;
    width: 250px;
    height: 150px;
}