<style>
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&amp;display=swap');

.table-module-wrapper {
  overflow-x: auto;
  padding: 20px;
}

.table-module {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 15px !important;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  text-align: left;
}

.table-module .table-header th {
  background-color: #00577d;
  color: #ffffff;
  padding: 12px;
  border-radius: 6px;
  border: none !important;
  white-space: nowrap;
}

.table-module td {
  background-color: #f3f3f3;
  padding: 12px;
  border-radius: 6px;
  box-shadow: none !important;
  border: none !important;
  white-space: nowrap;
}

.table-module tr:hover td {
  background-color: #e2e8f0;
}

.table-module td.highlight-column {
  background-color: #7c7b79;
  font-weight: 600;
  color: #ffffff !important;
}

/* Explicit removal of borders */
.table-module, .table-module th, .table-module td {
  border: none !important;
  outline: none !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .table-module {
    min-width: unset;
    font-size: 16px;
  }

  .table-module-wrapper {
    padding: 10px;
  }
}
</style>