* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F9F9F9;
  /* 폰트 로딩 최적화 */
  font-display: swap;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* FOUC 방지를 위한 기본 스타일 */
#root {
  min-height: 100vh;
  background-color: #F9F9F9;
}

/* 로딩 상태 기본 스타일 */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* 폰트 로딩 중 텍스트 깜빡임 방지 */
.font-loading {
  visibility: hidden;
}

.font-loaded {
  visibility: visible;
}
.kakao-channel-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1001;
  /* 자동 새로고침 UI보다 높은 z-index */
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #FEE500;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kakao-channel-button img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.kakao-channel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .kakao-channel-button {
    bottom: 20px;
    right: 20px;
  }
}

/*# sourceMappingURL=main.943697c3.css.map*/