.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 99999;
}

.stats-loader {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  width: 12px;
  background-color: #2196f3;
  border-radius: 4px 4px 0 0;
  animation: load 1.2s ease-in-out infinite;
}

.bar:nth-child(1) {
  height: 60px;
  animation-delay: 0s;
}

.bar:nth-child(2) {
  height: 80px;
  animation-delay: 0.1s;
}

.bar:nth-child(3) {
  height: 40px;
  animation-delay: 0.2s;
}

.bar:nth-child(4) {
  height: 100px;
  animation-delay: 0.3s;
}

.bar:nth-child(5) {
  height: 70px;
  animation-delay: 0.4s;
}

@keyframes load {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.6;
  }
}
