    /* 로딩바를 표시할 요소의 스타일 */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none; /* 초기에는 로딩바 숨김 */
  flex-direction: column;
  align-items: center;
}

/* 로딩바의 스타일 */
.loading-bar .spinner-border {
  margin-bottom: 10px;
}

/* 로딩바의 텍스트 스타일 */
.loading-bar div {
  color: #fff;
}
body.loading {
  overflow: hidden;
}