body.no-scroll {
  overflow: hidden;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.table th {
  text-align: left;
  padding: 16px;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.table td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr {
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.04);
}

a {
  color: var(--primary-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

a:hover {
  color: #60a5fa;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

.icon {
  font-style: normal;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
    border-radius: var(--radius-lg);
  }

  .table td,
  .table th {
    padding: 12px 8px;
  }
}