/* style.css */

body {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;  /* Increase the line height for the entire page */
}
.no-wrap {
  white-space: nowrap;
}

#title {
  background-color: #2c2c2c;
  padding: 0px;
  color: #FFFFFF;
}

#navigation {
  background-color: #2c2c2c;
  width: 35px;
  min-height: 100vh;  /* Set the minimum height to 100% of the viewport */
  color: #5D5C61;
}

#main {
  background-color: #2c2c2c;
  padding: 0px;
  color: #FFFFFF;
}

.button {
  display: block;
  background-color: #2c2c2c;
  color: #a4a4a4;
  text-decoration: none;
  border: 0px;
  cursor: pointer;
  height: 30px;
  width: 150px;
}

.button:hover {
  background-color: #6f6f6f;
  color: #FFFFFF;
}

.button-active {
  background-color: #3d9dca;
  color: #2c2c2c;
}
