.vtranet-v2 .vt-table-wrapper {
  background: var(--vt-surface);
  border: 1px solid var(--vt-border-color);
  border-radius: var(--vt-border-radius);
  overflow: hidden;
  box-shadow: var(--vt-shadow);
}

.vtranet-v2 .vt-table-wrapper .table-responsive {
  margin: 0;
}

.vtranet-v2 .vt-table {
  width: 100%;
  margin-bottom: 0;
  font-size: var(--vt-font-size-base);
  border-collapse: collapse;
}

.vtranet-v2 .vt-table thead th {
  background: var(--vt-table-header-bg);
  color: var(--vt-body-color);
  font-weight: 600;
  font-size: var(--vt-font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--vt-table-border);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

.vtranet-v2 .vt-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--vt-table-border);
  vertical-align: middle;
}

.vtranet-v2 .vt-table tbody tr:nth-child(even) {
  background: var(--vt-table-stripe-bg);
}

.vtranet-v2 .vt-table tbody tr:hover {
  background: var(--vt-table-hover-bg);
}

.vtranet-v2 .vt-table tbody tr:last-child td {
  border-bottom: none;
}

.vtranet-v2 .vt-table--sortable th[data-sort] {
  cursor: pointer;
  user-select: none;
}

.vtranet-v2 .vt-table--sortable th[data-sort]:hover {
  background: var(--vt-table-hover-bg);
}

.vtranet-v2 .vt-table--sortable th.is-sorted-asc::after {
  content: ' \25B2';
  font-size: 0.65em;
}

.vtranet-v2 .vt-table--sortable th.is-sorted-desc::after {
  content: ' \25BC';
  font-size: 0.65em;
}

.vtranet-v2 .vt-table__empty {
  text-align: center;
  padding: 2rem;
  color: var(--vt-secondary);
}

.vtranet-v2 .vt-table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--vt-border-color);
  background: var(--vt-table-stripe-bg);
  gap: 1rem;
  flex-wrap: wrap;
}

.vtranet-v2 .vt-table-search {
  max-width: 280px;
}

.vtranet-v2 .vt-table-search .form-control {
  font-size: var(--vt-font-size-sm);
}
