/* Table visibility + readability */
.text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  overflow: hidden;
}

.text table th,
.text table td {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 14px;
  vertical-align: top;
}

.text table th {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.text table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  .text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .text table th,
  .text table td {
    white-space: nowrap;
  }
}
