@charset "UTF-8";

/* ===== Loading 遮罩 ===== */
.load-outer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.load-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 180px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.loader {
  width: 44px;
  height: 44px;
  border: 4px solid #e0e0e0;
  border-top-color: #1D9E75;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.load-list .text {
  font-size: 14px;
  color: #666;
  margin: 0;
}