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

.status-col {
  flex: 1;
  text-align: center;
  padding: 10px;
  /* color: var(--static-green-500); */

}

.status-value {
  font-size: 14px;
  font-weight: 600;
}

.status-value.offline {
  color: var(--static-red-500);
}

.status-value.online {
  color: var(--static-green-500);
}

.button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


