body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f8ff;
  gap: 0;
}

.weven-loader-logo {
  height: 36px;
  width: auto;
  filter: brightness(0);
}

.weven-loader-bar {
  position: relative;
  margin-top: 28px;
  height: 4px;
  width: 144px;
  border-radius: 9999px;
  background: #e2e8f0;
  overflow: hidden;
}

.weven-loader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border-radius: 9999px;
  background: #185df1;
  animation: weven-loader-slide 0.85s ease-in-out infinite;
}

.weven-loader-text {
  margin: 16px 0 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #64748b;
}

@keyframes weven-loader-slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}
