HTML

<div class="disk-container">
  <table class="disk-table">
    <thead>
      <tr>
        <th>DISCO</th>
        {{#each data}}
        <th>{{[Disco]}}</th>
        {{/each}}
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>SMART</td>
        {{#each data}}
        {{#if (eq (lookup this "Status de SMART") 1)}}
          <td><span class="status up">SAUDÁVEL</span></td>
        {{else}}
          <td><span class="status down">ALERTA</span></td>
        {{/if}}
        {{/each}}
      </tr>
      <tr>
        <td>N° VEZES LIGADO</td>
        {{#each data}}
        <td>{{[N° Vezes Ligado]}}</td>
        {{/each}}
      </tr>
      <tr>
        <td>N° HORAS LIGADO</td>
        {{#each data}}
        <td>{{[N° Horas Ligado]}}</td>
        {{/each}}
      </tr>
      <tr>
        <td>TEMPERATURA</td>
        {{#each data}}
        <td>{{[Temperatura]}} °C</td>
        {{/each}}
      </tr>
      <tr>
        <td>SAÚDE SSD / M2</td>
        {{#each data}}
        <td>{{[Status de Saúde]}} %</td>
        {{/each}}
      </tr>
    </tbody>
  </table>
</div>

==================================================================================
CSS

.disk-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1E223C; 
  color: white; 
  border-radius: 14px;
  padding: 18px;
  font-size: 14.4px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
  box-sizing: border-box;
  overflow: auto;
}

.disk-table {
  width: 100%;
  border-collapse: collapse;
}

.disk-table thead th {
  text-align: left;
  font-weight: bold;
  padding-bottom: 9px;
  color: white;
  background: #1E223C;
}


.disk-table thead th:not(:first-child) {
  text-align: center;
}

.disk-table tbody tr {
  border-bottom: 1px solid #222;
}

.disk-table tbody td {
  padding: 9px;
  font-size: 14.4px;
  vertical-align: middle;
}

.disk-table tbody td:first-child {
  text-align: left;
  font-weight: bold;
}

.disk-table tbody td:not(:first-child) {
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 54px;
  border-radius: 50px;
  padding: 3.6px 60px;
  font-weight: 800;
  font-size: 12.6px;
  color: black;
}

.status.up {
  background: #2ecc71;
}

.status.down {
  background: #e74c3c;
}

.disk-container table,
.disk-container th,
.disk-container td {
  border: 1px solid #ffffff33; /* branco com transparência */
}

.disk-container table {
  border-collapse: collapse;
}

.disk-container tr td {
  padding: 0.6em 0.6em;
}