/* tables.css */
.offers-container,
.orders-table-container {
  border-radius: var(--space-3);
  overflow-y: auto;
  max-height: 300px;
  border: 1px solid rgba(255,255,255,0.1);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--neutral-50);
}





th, td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
  text-align: left;
}


th:nth-child(1) {
  margin-left: var(--space-4);
}





th {
  background: var(--neutral-900);
  position: sticky;
  top: 0;
  font-weight: 600;
  cursor: pointer;
}

tr:hover td {
  background-color: rgba(255,255,255,0.03);
}



.item-icon {

  width:  var(--icon-size-md);
  height: var(--icon-size-md);

  margin-right: var(--space-2);   /* 0.5rem / 8px */
  object-fit: cover;
  border-radius: var(--space-1);  /* 0.25rem / 4px */
}



.item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
