/* Admin site styles — 로딩 스피너만 유지, 나머지는 tokens/base/typography/components 에서 제공 */

/* Loading spinner */
.yc-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.yc-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #4a6fa5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.yc-label {
  margin-top: 16px;
  color: #666;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Blazor error overlay — hidden by default, shown by Blazor on connection error */
#blazor-error-ui {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff3cd;
  color: #856404;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
  z-index: 1000;
}
#blazor-error-ui .reload {
  color: #856404;
  margin-left: 0.5rem;
  font-weight: 600;
}
