/* Статистика */

.stats-container {
  display: flex;
  gap: 10px;
}

.stats-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stat-item {
  width: 178px;
  height: 59px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
}

.stat-item img {
  margin-left: 8px;
  width: 32px;
  height: 32px;
}

.stat-text > * + * {
  margin-top: 4px;
  flex-direction: column;
}

.stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  font-variant-numeric: tabular-nums;
}

.stat-value.all-time { color: #16DBCC; }
.stat-value.working-time { color: #4318FF; }
.stat-value.break-time { color: #FF82AC; }

.stat-label {
  font-size: 12px;
  color: #718EBF;
}
