/* 초기 HTML 로딩 시 배경색을 즉시 설정 */
html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* 입력 필드 확대 방지 추가 스타일 */
input, select, textarea {
  font-size: 16px !important;
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
}

/* 포커스 시에도 동일하게 적용 */
input:focus, select:focus, textarea:focus {
  font-size: 16px !important;
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
}

/* PWA 스플래시 화면 스타일 */
#pwa-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #7c3aed, #a855f7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#pwa-splash-logo {
  width: 96px;
  height: 96px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

#pwa-splash-title {
  color: white;
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 8px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#pwa-splash-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}