.vendor-dashboard {
  padding: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: one column */
  gap: 20px;
}

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.card:hover {
  border-color: #865DF7;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon-circle {
  background-color: #f4efff;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-weight: 600;
  margin-left: 10px;
  color: #333;
  font-size: 14px;
}

.card-body .count {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.card-body .subtitle {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}


