
html {
  height: 100%;
}

body {
  position: absolute;
  height: 90%;
  width: 100%;
  overflow: scroll;
  margin: 0px;
  padding: 0px;
  background-color: white;
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

td, th {
  border: 0px solid #000;
  padding: 5px;
  vertical-align: text-top;
  text-align: center;
}

#netSettTable td:nth-child(3) {
  vertical-align: bottom;
}

.terminal {
  display: flex;
  flex: 1;
  border: 1px solid white;
  padding: 15px;
}

.terminal::-webkit-scrollbar {
  display: none;
}

.header {
  display: flex;
  background-color: white;
  border: 1px;
  width: 100%;
  height: 80px;
}

.panel {
  display: flex;
  flex: 1;
  row-gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.actionButton {
  background-color: #7bafd4;
  border: none;
  border-radius: 8px;
  width: 150px;
  height: 30px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
}

.actionButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#loadDevButton {
  background-color: #7bafd4;
  border: none;
  border-radius: 8px;
  width: 100px;
  height: 25px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
  cursor: pointer;
}

#loadDevButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#clientConnectButton {
  background-color: #7bafd4;
  border: none;
  border-radius: 8px;
  width: 200px;
  height: 50px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

#logo {
  display: flex;
  height: 50px;
}

/* Hide the spinner arrows for number inputs */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#dev-list {
  margin: 10px;
}

ul {
  width: 100px;
  height: 300px;
  border: 1px solid black;
  overflow-y: auto;
  overflow-x: hidden;
  list-style-type: circle;
  padding-left: 20px;
}

ul li::marker {
  color: black;
}

li {
  padding: 2px;
  margin-bottom: 5px;
  cursor: pointer;
}

li.selected {
  background-color: #007BFF;
  background-size: auto;
  border-radius: 5px;
  color: white;
}
