/* table_sales.css */

.table-sales {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.table-sales th,
.table-sales td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.table-sales th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333;
}

.table-sales tr:nth-child(even) {
  background-color: #fafafa;
}

.table-sales tr:hover {
  background-color: #f1f7ff;
  transition: background 0.2s;
}

.table-sales td.amount {
  text-align: right;
  font-weight: 500;
  color: #2e7d32;
}

.table-sales td.status {
  text-align: center;
  font-size: 0.95em;
  padding: 8px 10px;
}

.table-sales td.status.completed {
  color: #388e3c;
  background-color: #e8f5e9;
  border-radius: 4px;
}

.table-sales td.status.pending {
  color: #fbc02d;
  background-color: #fffde7;
  border-radius: 4px;
}

.table-sales td.status.canceled {
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 4px;
}