.asifoo-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.asifoo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
}
.asifoo-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 10px;
  display:flex;align-items:center;
}
.asifoo-card h3 .dashicons {
  margin-right: 8px;
}
.asifoo-card p {
  font-size: 1.1rem;
  color: #374151;
  margin: 0;
}
.asifoo-table {
  width: 100%;
  border-collapse: collapse;
}
.asifoo-table tr:nth-child(even) { background: #f9fafb; }
.asifoo-table tr:hover { background: #f1f5f9; }
.asifoo-table th, .asifoo-table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.asifoo-referral-input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.95rem;
}
