/* Center text alignment for heading */
.center-text {
  text-align: center;
}

/* Table container for centering */
.table-container {
  display: flex;
  justify-content: center;
}

/* Sensors table styles */
#sensors {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 55%;
}

#sensors td, 
#sensors tr {
  border: 1px solid #ddd; 
  padding: 8px;
  text-align: center;
  background-color: #020232;
  color: white;
}

#sensors th { 
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #000050;
  color: white;
}