/* 统计信息样式 - 简洁风格，与现有区域保持一致 */
.stats-group {
  margin-bottom: 8px;
}

.stats-title {
  padding: 3px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #858585;
  text-transform: uppercase;
  font-weight: normal;
}

.stats-title:hover {
  background: var(--vscode-active);
}

/* 月度统计卡片 - 简洁风格 */
.stats-cards {
  padding: 5px 12px;
}

.stat-card {
  padding: 3px 8px;
  display: flex;
  align-items: center;
  color: #d4d4d4;
  text-decoration: none;
  transition: background 0.2s ease;
  border-radius: 3px;
  margin: 2px 0;
}

.stat-card:hover {
  background: var(--vscode-active);
}

.stat-month {
  color: #d4d4d4;
  font-size: 13px;
  font-weight: normal;
  flex: 1;
}

.stat-count {
  color: #808080;
  font-size: 13px;
  margin-left: auto;
  text-align: right;
  min-width: 40px;
  flex-shrink: 0;
}

/* 网站统计项目 - 简洁风格，与 folder/file 一致 */
.stats-content {
  padding: 5px 12px;
}

.stats-item {
  padding: 3px 8px;
  display: flex;
  align-items: center;
  color: #d4d4d4;
  text-decoration: none;
  transition: background 0.2s ease;
  border-radius: 3px;
  margin: 2px 0;
}

.stats-item:hover {
  background: var(--vscode-active);
}

.stats-item i {
  color: #569cd6;
  width: 16px;
  margin-right: 8px;
  font-size: 12px;
}

.stats-label {
  color: #d4d4d4;
  font-size: 13px;
  flex: 1;
}

.stats-value {
  color: #808080;
  font-size: 13px;
  margin-left: auto;
  text-align: right;
  min-width: 40px;
  flex-shrink: 0;
}

/* 简洁的响应式设计 */
@media (max-width: 768px) {
  .stats-title {
    font-size: 10px;
  }

  .stat-card, .stats-item {
    padding: 2px 6px;
  }

  .stats-label, .stats-value, .stat-month, .stat-count {
    font-size: 12px;
  }
}
