table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: #f9f9f9;
}

.actions {
  display: flex;
  gap: 8px;
}

/* Responsive para tablas */
@media (max-width: 768px) {
  th, td {
    padding: 10px;
    font-size: 14px;
  }
}