.lab-terminal {
  background: #c0c0c0;
  padding: 20px 10px;
  font-family: monospace;
  color: #000080;
}

.lab-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.lab-toolbar input {
  padding: 2px 6px;
  font-family: monospace;
  width: 350px;
  background: #c0c0c0;
}

.lab-tags {
  margin-bottom: 8px;
}

.lab-table {
  width: 100%;
  display: block;
  overflow-x: auto;
}

.lab-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 3fr;
  padding: 6px 8px;
  border-bottom: 1px solid #000080;
  cursor: pointer;
}

.lab-row:not(.lab-head):hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #000080;
  border-bottom: 3px solid #000080;
  cursor: pointer;
}

.lab-head {
  font-weight: bold;
  background-color: #000080;
  color: #c0c0c0;
}
.col.status.active { color: green; }
.col.status.unstable { color: yellow; }
.col.status.dead { color: red; }
.col.status.archived { color: blue; }