.joe_statistics__tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.joe_statistics__tabs button {
  flex: 1;
  height: 45px;
  border: none;
  border-radius: var(--radius-wrap);
  background: var(--background);
  box-shadow: var(--box-shadow);
  color: var(--routine);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.joe_statistics__tabs button.active {
  background: var(--theme);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.joe_statistics__tabs button:hover:not(.active) {
  background: var(--classD);
  color: var(--theme);
}
.joe_statistics__charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 15px;
}
.joe_statistics__charts > div {
  background: var(--background);
  box-shadow: var(--box-shadow);
  border-radius: var(--radius-wrap);
  padding: 20px;
  height: 400px;
}
@media (max-width: 768px) {
  .joe_statistics__charts > div {
    height: 300px;
    padding: 15px;
  }
}