@charset "UTF-8";

/* src/styles.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #1677ff;
  --success: #52c41a;
  --warning: #faad14;
  --danger: #ff4d4f;
  --text-primary: #333;
  --text-secondary: #666;
  --text-disabled: #999;
  --border: #d9d9d9;
  --bg-base: #f5f5f5;
  --bg-card: #fff;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.status-badge.pending {
  background: #fff7e6;
  color: #d46b08;
}
.status-badge.active {
  background: #f6ffed;
  color: #389e0d;
}
.status-badge.success {
  background: #f6ffed;
  color: #389e0d;
}
.status-badge.info {
  background: #e6f4ff;
  color: #0958d9;
}
.status-badge.warning {
  background: #fff7e6;
  color: #d46b08;
}
.status-badge.error {
  background: #fff2f0;
  color: #cf1322;
}
.status-badge.default {
  background: #f0f0f0;
  color: #595959;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page-header h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}
.page-header .date-info {
  color: var(--text-secondary);
  font-size: 13px;
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-cards .stat-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.stat-cards .stat-card .stat-icon {
  font-size: 32px;
}
.stat-cards .stat-card .stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-cards .stat-card .stat-info .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-cards .stat-card .stat-info .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.section {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.section h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text-disabled);
}
.empty-state span {
  font-size: 40px;
  margin-bottom: 12px;
}
.empty-state p {
  font-size: 14px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
