#mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  display: none;
  width: 100vw;
  height: 100vh;
}

.loader-container {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

 /* ✅ 기존 로딩 회전 원형 */
#loader {
  display: none;
  width: 120px;
  height: 120px;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  box-sizing: border-box;
}

@keyframes spin {
 0% {
    transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

.loader-text {
   display: none;
   margin-top: 20px;
   font-size: 1rem;
   font-weight: bold;
   background: #fff;
   padding: 12px 20px;
   border-radius: 8px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
   color: #333;
   white-space: nowrap;
   text-align: center;
}

/* ✅ 반응형 대응 */
@media (max-width: 576px) {
   #loader {
      width: 80px;
      height: 80px;
      border-width: 10px;
   }

   .loader-text {
      font-size: 0.9rem;
      padding: 10px 15px;
      white-space: normal;
   }
}



.loader-container button {
    display: none !important;
}

.loader-container input {
    display: none !important;
}