.dashboard-stat-card .stats-card {
  min-height: 120px;
  padding: 22px 24px;
  border-radius: 20px;
}

.dashboard-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dashboard-panel {
  background: #ffffff;
  border: 1px solid #d9e2ef;
  border-radius: 20px;
  overflow: hidden;
}

.dashboard-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid #e5e7eb;
}

.dashboard-panel__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.dashboard-panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
}

.dashboard-empty-state {
  padding: 28px 24px 32px;
  color: #6b7280;
  font-size: 14px;
}

.dashboard-recent-order-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 24px;
}

.dashboard-recent-order-item {
  padding: 18px 20px;
  background: #f8fafc;
  border-radius: 16px;
}

.dashboard-recent-order-item__content {
  min-width: 0;
}

.dashboard-recent-order-item__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dashboard-recent-order-item__id {
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

.dashboard-recent-order-item__status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-recent-order-item__status--paid {
  background: #dbeafe;
  color: #1d4ed8;
}

.dashboard-recent-order-item__status--completed {
  background: #dcfce7;
  color: #15803d;
}

.dashboard-recent-order-item__status--pending {
  background: #fef3c7;
  color: #b45309;
}

.dashboard-recent-order-item__status--cancelled {
  background: #fee2e2;
  color: #b91c1c;
}

.dashboard-recent-order-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}

.dashboard-recent-order-item__separator {
  color: #9ca3af;
}

.dashboard-recent-order-item__amount {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

.dashboard-recent-order-item__amount-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.dashboard-pending-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
}

.dashboard-pending-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 16px;
}

.dashboard-pending-item__content {
  min-width: 0;
}

.dashboard-pending-item__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dashboard-pending-item__name {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.dashboard-pending-item__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-pending-item__type {
  margin-bottom: 4px;
  color: #374151;
  font-size: 14px;
}

.dashboard-pending-item__time {
  color: #6b7280;
  font-size: 13px;
}

.dashboard-pending-item__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .dashboard-content-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .dashboard-panel__header {
    padding: 20px 18px 16px;
  }

  .dashboard-panel__title {
    font-size: 24px;
  }

  .dashboard-empty-state {
    padding: 24px 18px 28px;
  }

  .dashboard-recent-order-list {
    padding: 16px 18px 18px;
  }

  .dashboard-pending-list {
    padding: 16px 18px 18px;
  }

  .dashboard-recent-order-item {
    padding: 16px 16px 18px;
  }

  .dashboard-pending-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
