* > {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul{
    padding: 0;
    padding-left: 10px;
}

li{
    padding-bottom: 5px;
}

body{
    margin:0;
    font-family: 'Roboto', sans-serif;
    background-color: #fcfcfc;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.main{
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: scroll;
    height: 100%;
}

.demo{
    display: flex;
    flex-direction: column;
    min-width: 900px;
    height: 100%;    
    align-items: center;
    border-right: 4px solid rgb(0, 27, 200);
    overflow: scroll;
}

.demo img {
    width: 100%;
    height:auto;
}

.prototypes{
    display:flex;
    height: 100%;
    flex-direction: column;
    min-width: 300px;
    background-color:brown;
    flex-grow: 1;
    overflow: scroll;
}

.prototypes > * {
    width: 100%;
    height:auto;
}

iframe{
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.header{
    height: 90px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid rgb(0, 27, 200);
    padding: 0px 20px;
}

#title{
    margin:0;
    color: rgb(0, 27, 200);
    font-size: 2rem;
    font-weight: 400;
    font-stretch: 130%;
}

.anatomy {
    padding-left: 20px;
    border-top: 4px solid rgb(0, 27, 200);
}

.demo h3{
    width: 100%;
    margin-bottom:0;
    text-align: start;
    color: rgb(0, 27, 200);
    font-size: 2rem;
    font-weight: 400;
    font-stretch: 130%;
}

.logo{
    background-color: rgb(0, 27, 200);
    padding: 6px 6px 6px 16px;
    border-radius:999px;
    height: 40%;
}

.footer{
    display:flex;
    width:100%;
    justify-content: flex-end;
    gap:1.8rem;
    align-items: center;
    height:50px;
    background-color:rgb(0, 27, 200);
    border-top: 4px solid rgb(0, 27, 200);
}

.footer-links{
    display:flex;
    width:100%;
    justify-content: flex-end;
    gap:1.8rem;
    align-items: center;
    height:50px;
    padding-right:20px;
}

.footer a {
    color:#fcfcfc;
    font-size: 1.6rem;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight:300;
}

.footer a:hover{
    text-decoration: underline;
}
  
#controls {
    font-size: 0.45rem;
    font-family: monospace;
    border-top: 4px solid rgb(0, 27, 200);
    color:rgba(0, 27, 200, 70);
    width: 100%;
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #controls-container {
    gap: 15px;
    display: flex;
    flex:1;
    padding: 0;
    padding-right:20px;
  }
  
  #controls h3 {
    margin: 0 0 0 10px;
    width:20%;
    color:rgb(0, 27, 200);
    
  }

  .collapsible-header {
    cursor: pointer;
    padding: 10px;
  }
  
  .collapsible-content {
    display: none;
    padding:0;
    padding-left: 30px;
  }
  
  .active .collapsible-content {
    display: block;
  }

  
  .collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-icon {
    font-size: 1.2em; /* Adjust as needed */
}

.collapsible-content {
    display: none;
}

.collapsible.active .collapsible-content {
    display: block;
}