.custom-table {
    background-color: var(--csutom-body-bg);
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: none;
}

.custom-table th {
    background-color: var(--custom-tertiary-bg);
}

.custom-table tr td, .custom-table tr th {
  white-space: nowrap;
  padding: 0.75rem;
  border-bottom: 1px solid var(--custom-tertiary-bg);
  text-align: inherit;
}

.custom-table tbody tr:hover {
    background-color: var(--custom-secondary-bg);
}