
/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #009688; /* This is just a placeholder color */
}

.teal {
  background-color: #009688;
  color: white;
}

#nav-mobile {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#nav-mobile li {
  display: inline-block;
  margin-right: 20px; /* Adjust as needed */
}

.right {
  float: right;
}

.brand-logo {
  font-size: 2em; /* Adjust as needed */
  color: #910000; /* Adjust as needed */
  text-decoration: none;
}

/* Footer Styles */
.page-footer {
  background: linear-gradient(to right, #f79502, #c5490f); /* Adjust as needed */
  padding: 20px 0;
}

.page-footer h5 {
  font-size: 24px;
}

.page-footer p {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-footer a {
  margin-top: 1rem;
}

.button-container {
  display: flex;
  align-items: center;
}

button {
  background-color: #0d6eee; /* Adjust as needed */
  color: white; /* Adjust as needed */
  border: none;
  padding: 10px 20px; /* Adjust as needed */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px; /* Adjust as needed */
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px; /* Adjust as needed */
  transition: background-color 0.3s ease; /* Adjust as needed */
}

button:hover {
  background-color: #1be725; /* Adjust as needed */
}

#portList {
  display: flex;
  gap: 10px; /* Adjust this value to change the space between buttons */
  margin-left: 20px; /* Adjust this value to change the space between the "Add Device" button and the port buttons */
}

#waterfallContainer {
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  overflow: hidden; /* This will contain the canvas if it gets too big */
}

#waterfallCanvas {
  width: 100%;
  height: 100%;
}

input[type=range] {
  /* Width and height of the slider */
  width: 100%;
  height: 25px;

  /* Background color of the slider */
  background: #ddd;

  /* Remove the outline that appears on focus */
  outline: none;

  /* Add some padding and margin */
  padding: 10px 0;
  margin: 10px 0;
}

input[type=range]::-webkit-slider-thumb {
  /* Style the slider handle (thumb) */
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  /* Style the slider handle (thumb) for Firefox */
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}