/* Tabeller */
#admin table,
#datakilder table,
#rapporter table,
.admin-tasks table {
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  color: var(--ui-ink);
}

#admin table thead th,
#datakilder table thead th,
#rapporter table thead th,
.admin-tasks table thead th {
  border-bottom: 1px solid var(--ui-line);
  color: var(--ui-muted);
  background: var(--ui-surface-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#admin table td,
#datakilder table td,
#rapporter table td,
.admin-tasks table td {
  border-bottom-color: var(--ui-line);
  background: #fff;
}

#admin table tbody tr:hover td,
#datakilder table tbody tr:hover td,
#rapporter table tbody tr:hover td,
.admin-tasks table tbody tr:hover td {
  background: #f7fbf8;
}

