/* Updated styling to match design images */
.page-content {
  padding: 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 110px);
}

.stats-header {
  display: flex;
  justify-content: flex-end;
  padding: 12px 16px;
  background-color: #fff;
}

.order-detail-link {
  color: #00a6ff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.stats-container {
  padding: 0 16px 16px;
  background-color: #fff;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.stats-row:last-child {
  margin-bottom: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-label {
  color: #000;
  white-space: nowrap;
}

.stat-value.red {
  color: #ff4757;
  font-weight: 600;
}

.team-table {
  background-color: #fff;
  margin-top: 12px;
  overflow-x: auto;
}

.team-table table {
  width: 100%;
  border-collapse: collapse;
}

.team-table thead {
  background-color: #f8f8f8;
}

.team-table th {
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
}

.team-table td {
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
}

.team-table tbody tr:last-child td {
  border-bottom: none;
}
