#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;
}

#loading img {
  width: 200px;
  height: 200px;
  margin-bottom: 24px;
}

#loading .progress-bar {
  width: 200px;
  height: 4px;
  background: #E2F5FE;
  border-radius: 2px;
  overflow: hidden;
}

#loading .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #40A8CC, #00A08F);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}
