* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Ubuntu Mono';
    font-size: 15px;
    height: 100%;
    overflow-y: auto
  }

  .section-title {
    font-size: 20px;
    font-weight: bold;
  }

  button {
    font: inherit;
  }
  
  .header {
    background-color: #f1f1f1;
    padding: 5px;
    text-align: center;
    font-size: 10px;
  }

/*   .column {
    /* float: left; 
    padding: 0px;
    height: 90vh;
  } */
  
  .column.left {
    width: 280px;
    min-width: 280px;
    overflow: hidden;
  }
  
  .column.middle {
    /* width: calc(60% - 120px); */
    flex-grow: 1;
    /* width: calc(100% - 265px - 250px); */
    transition: flex-grow 0.3s ease;
    min-width: 0;
  }

  #canvas {
    /* width: flex; */
    flex-grow: 2;
  }

  .column.right {
    width: 250px;
    overflow: hidden;
    transition: width 0.3s ease;
    min-width: 0px;
  }
  
  .hidden {
    width: 0px !important; 
    padding: 0px !important; 
    display: none;
  }

  .atom-content {
    margin-left: 5px;
    padding: 5px;
    overflow-y: auto;
  }

  .error-content {
    margin-top: 20px;
    margin-left: 5px;
    padding: 5px;
    overflow-y: auto;
  }

  .bond-length-content {
    padding: 5px;
    margin-left: 5px;
    overflow-y: auto;
  }

  #start {
    position: relative; 
    padding: 10px;
    max-height: 90%;
    top: 30px;
    bottom: 20%;
    overflow-y: auto;
  }

  .row {
    display: flex;
    width: 100%;
    height: 100vh;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .footer {
    background-color: #f1f1f1;
    padding: 5px;
    text-align: center;
  }
  
  .label {
    margin-left: 25px;
    position: absolute;
    color: black; 
    font-family: serif; 
    font-size: 12px; 
    pointer-events: none; 
  }

  .button-container {
    position: absolute;
    padding: 5px;
    
  }

  .button-container.top {
    justify-self: right;
  }

  #hide-questions {
    position: absolute;
    
    /* top: 80px; */
    background-color: #ffffff;
    border: 1px solid #999;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  /* .showing-questions {
    right: 135px;
  }

  .hiding-questions {
    right: 10px;
  } */

  .bottom {
    bottom: 0;
  }

  .button-container button {
    margin-right: 10px;
    margin-bottom: 20px;
  }

  .button-container-hide-questions {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 70px;
    right: 12px;
}

  #mol-gui {
    background-color: inherit;
    color: black;
    --widget-color: #949494;
    --hover-color: #7C7C7C
  }

  .tab-rep button {
    font-size: 17px;
  }

  .lil-gui {
    width: 100% !important;
    font-family: 'Ubuntu Mono';
    font-size: 13px;
  }

  .lil-gui button {
    font-family: 'Ubuntu Mono';
    font-size: 15px;
  }

  .within-container {
    display: flex;           
    gap: 0px;              
    align-items: center;   
}


/* Style the tab */
.tab-selection-method {
  display: flex;  
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  border: none;
  background-color: #7C7C7C;
}

.tab-rep {
  display: flex;  
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  border: none;
  background-color: #7C7C7C;
}

/* Style the buttons that are used to open the tab content */
.tab-selection-method button {
  background-color: #7C7C7C;
  border: none;
  border-radius: 0px;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 2px 5px;
  margin: 0;
}

.tab-rep button {
  background-color: #7C7C7C;
  border: none;
  border-radius: 0px;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 2px 5px;
  margin: 0;
}

/* Create an active/current tab-link-selection-method class */
.tab-selection-method button.active {
  background-color: #5D5D5D;
}

.tab-rep button.active {
  color: white;
  background-color: #1F1F1F; 
}

.tab-link-rep.active {
  background-color: #1F1F1F; 
}

.distance .controller > .name {
  min-width: 0px; 
}

.distance {
  display: flex;
  gap: 20px; 
}

/* Style the tab content */
.tab-content-selection-method {
  padding: 1px 2px;
  border: none;
  margin: 5px;
  
}

.tab-content-rep {
  border: none;
}

.selection-option {
  background-color: #5D5D5D;
  margin: 10px;
  
}

.controller.option {
  margin: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.mol-rep-option {
  padding: 5px;
}

.text {
  padding: 5px;
  margin: 0px;
  font-size: 15px;
}

.title {
  display: none; /* Hide folder titles */
}

.children {
  display: none; /* Hide folder titles */
}

#loading-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 5px;
  color: white;
  display: none;
}




  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  /* @media (max-width: 600px) {
    .column.side, .column.middle {
      width: 100%;
    }
  } */