/* app/assets/stylesheets/shared/tables.css */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

th {
  font-weight: 600;
  color: var(--gray-700);
}

tbody tr:hover {
  background-color: var(--gray-50);
}

.table-container {
  overflow-x: auto;
  margin-bottom: 1rem;
}

/* MOVED: From dashboard.html.erb */
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.empty-message {
  color: #666;
  font-style: italic;
}
