body{
  background-color: #F5F7FA;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color:#333;
}

/* 초기로딩페이지 */
body.loading-page{
  overflow:hidden;
  height:100%;
}

body.loading-page div#calendar{
  height:50vh;
}

#wrapper{
  max-width: 850px;
  margin: 0 auto;
}

/* #wrapper.loading::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: block;
}

#wrapper.loading::after {
  content: '데이터 로딩중…';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  color: #333;
  z-index: 10000;
} */

div.card-wrap{
  background-color: white;
  padding:8px;
  margin-bottom:12px;
  border-radius: 1.5rem;
  box-shadow: 0 3px 20px rgba(99, 99, 99, 0.1);
}

h2{
  padding-left: 8px;
  padding-top: 20px;
  margin-bottom:5px;
}

.hidden{
  display: none !important;
}

.opacity-zero{
  opacity: 0;
}

/* 페이지 로딩 */
.dummy-data span.loading{
  position: relative;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  background-color: #dadada;
  border-radius: 8px;
  overflow: hidden;
  animation: pulse 1.4s infinite alternate;
}

.dummy-data .time-block div.value span.loading{
  font-size: 2.7rem;
  font-weight: 700;
}


div.imgWrap.dummy-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #dadada;
  animation: pulse 1.4s infinite alternate;
  border-radius: 1rem;
}

img.placeholder-img{
  display:none;
}

div#calendar.dummy-data-calendar::before{
  content: "loading...";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 20px;
  background-color: #dadada;
  z-index: 10;
  animation: pulse 1.4s infinite alternate;
}

@keyframes pulse {
  0% {
    background-color: #dadada;    /* 첫 번째 색상 */
  }
  100% {
    background-color: #e9e9e9;    /* 두 번째 색상 */
  }
}