.module-container{
  margin: 100px;
  font-style: "Open-Sans";
  min-height: 1000px;
  justify-content: center;
  position: relative;
}

.module-heading{  
  display:flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.title-box{
  width: 60%;
}

.content-container{
  display: block;
  width: 100%;
  margin: 0 auto;
}

.menu-container{
  align-items: center;
  color: orange;
  max-width: 80%;
  display: flex;
  margin: 0 auto;    
}

.interface-container{
  display:flex;
  justify-content: center;
}

.image-interface-container{
   max-width: 1200px;
}

.titlebox {
  display: flex;
  justify-content: center;
  align-items: center;
}
  
.optiontab{
  text-align: center;
  width: 25%;
  font-size: 25px;
  margin-right: 10px;
  padding-top: 15px;
}

 .optiontab:hover{
  cursor:pointer;
}

.optiontabactive{
  font-weight: bold;
  font-size: 30px;
  color: orange;
  background-color: white;
  box-shadow: 0px 10px 10px 10px #00000015;
}

.optiontabactive p{
  font-weight: bold;
}

[data-content]{
  display:none; 
}

.activecontent[data-content]{
  display:block;
}

.interface_description{
  width: 35%;
  background-color: grey;
  color: white;
  font-size: 20px;
  padding: 10px;
  margin: 0;
  position: absolute;
  bottom: 50px;
  right: 0px;
}

.caja {
  margin:20px auto 40px auto;	
  border:1px solid #d9d9d9;
  height:50px;
  overflow: hidden;
  width: 325px;
  position:relative;
  display:none;
}
.caja select {
  background: transparent;
  border: none;
  font-size: 22px;
  height: 50px;
  padding: 5px;
  width: 325px;
}
.caja select:focus{ outline: none;}

.caja::after{
  content:"\025be";
  display:table-cell;
  padding-top:7px;
  text-align:center;
  width:50px;
  height:50px;
  background-color:#d9d9d9;
  position:absolute;
  top:0;
  right:0px;	
  pointer-events: none;
}

.tour-button{
  justify-content: center;
  align-items: center;
  display: flex;

}

@media screen and (max-width: 800px) {
  .module-container{
    margin: 5px;
  }
  .content-container{
    display: block;
  }
  .menu-container{
    display: flex;
    flex-direction: row; /* Change to horizontal layout */
    justify-content: center;
    width: auto; /* Allow content to expand based on screen size */
    overflow-x: auto; /* Add horizontal scroll if content overflows */
    white-space: nowrap; /* Prevent content from wrapping */
  }
  .optiontab {
    /* Adjust styles for horizontal layout */
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    width: auto;
    font-size: 16px; /* Adjust font size for smaller screens */
  }
  .interface_description{
   position: static;
   width: 100%;
   font-size: 15px;
  }
    
 .interface-container{
  width: 100%;
  min-height: 500px;
}
  
 
  
  