
.loader-body {
  display: none; /* 로딩창 표시 */
  justify-content: center;
  align-items: center;
  position: fixed; /* 화면에 고정 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 전체 화면 덮음 */
  background-color: #0000007d; /* 반투명 배경 */
  font-family: Arial, sans-serif;
  z-index: 9999; /* 최상단에 위치 */
}

.loader-container {
  text-align: center;
}

.loader {
  width: 80px;
  height: 80px;
  border: 9px dotted #FFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 5s linear infinite;
}

.loader-text {
  margin-top: 20px;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}