.dashboard-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
}

.table-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.table-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #04aa6d;
  padding-bottom: 5px;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card th,
.table-card td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.table-card thead th {
  background: #f9f9f9;
  font-weight: bold;
  color: #444;
}

.table-card tbody tr:nth-child(even) {
  background: #f5f5f5;
}
