#performancePanelBox {
  position: fixed;
  width: calc(100% - 45px);
  height: calc(100% - 50px);
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 10px;
  overflow-y: auto;
}

#performancePanelBox .boxClose {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  cursor: pointer;
  font-size: 20px;
}

.dashboard-container {
  padding: 20px;
  background: #f4f7f6;
  height: 100%;
}

#performancePanelBox .table {
  margin-bottom: 0;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.dash-title {
  font-size: 20px;
  font-weight: bold;
  color: #334155;
  border-left: 5px solid #3b82f6;
  padding-left: 15px;
  display: flex;
}

/* 统计卡片网格 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ddd;
}

.stat-icon {
  font-size: 30px;
  margin-right: 15px;
  opacity: 0.8;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 10px;
}

/* 卡片颜色主题 */
.blue {
  border-top: 4px solid #3b82f6;

  .stat-icon,
  .stat-value {
    color: #3b82f6;
  }
}

.green {
  border-top: 4px solid #10b981;

  .stat-icon,
  .stat-value {
    color: #10b981;
  }
}

.orange {
  border-top: 4px solid #f59e0b;

  .stat-icon,
  .stat-value {
    color: #f59e0b;
  }
}

.red {
  border-top: 4px solid #ef4444;

  .stat-icon,
  .stat-value {
    color: #ef4444;
  }
}

/* 表格与进度条 */
.list-section {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.progress {
  height: 8px;
  margin-bottom: 0;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

.matching-rate-text {
  font-size: 12px;
  margin-top: 4px;
  display: block;
  color: #64748b;
}

/* 状态标签 */
.status-tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.tag-full {
  background: #d1fae5;
  color: #065f46;
}

.tag-short {
  background: #ffedd5;
  color: #9a3412;
}

.tag-zero {
  background: #fee2e2;
  color: #991b1b;
}

.bg-blue {
  background: #99CCFF;
}