body, html {
    height: 100%;
    font-family: "Verdana", sans-serif;
    font-size: 1em;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding-top: 20px;
  }
  
  h1 {
    font-size: 1.5em;
    margin-bottom: 60px; /* top right bottom left */
  }
  
  p {
    margin: 10px 0;
  }
  
  table {
    margin: 20px auto;
    border-collapse: collapse;
    width: auto;
  }
  
  table, td {
    border: 1px solid #000;
  }

  th {
    padding: 8px 12px;
    background-color: #e0f0ff; /* subtle blue */
    text-align: left; /* ensures alignment matches <td> unless centered */
    border: 1px solid #000;
  }
  
  td {
    padding: 8px 12px;
  }

  .blur-bar {
    display: inline-block;
    width: 80px;
    height: 1em;
    background-color: #ccc;
    border-radius: 4px;
    filter: blur(2px);
  }

  .indicator {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}

.indicator.online {
  background-color: green;
}

.indicator.offline {
  background-color: red;
}

hr.bottom-line {
    width: 50%;
    margin-top: 120px;
    margin-bottom: 20px
}

hr.divider-line {
  width: 30%;
  margin-top: 20px;
  margin-bottom: 20px
}

.pale {
  font-size: 0.9em;
  color: #666;
}

.highlight-box {
  background-color: #a5c9ff; /* soft blue */
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}