
body { padding: 0; margin: 0 }
#unity-container { position: fixed; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: #231F20 }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; display: none; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { margin-left: auto; margin-right: auto; width: 141px; height: 18px; margin-top: 10px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
/* #unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none } */
#unity-warning { 
  position: absolute; 
  left: 50%; 
  top: 5%; 
  transform: translate(-50%); 
  background: white; 
  padding: 10px; 
  display: none; 
  max-height: 100px;   /* 최대 높이 설정 */
  overflow-y: auto;    /* 스크롤 활성화 */
  width: 80%;          /* 폭 설정으로 좌우 여백 추가 */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* 경고 박스에 그림자 추가 */
}

#loading-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #231F20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


#custom-logo { 
    width: 154px; 
    height: 130px; 
    background: url('custom-logo.png') no-repeat center; /* 경로 수정 */
    background-size: contain;
    margin-bottom: 20px; /* 로고와 프로그레스 바 사이 간격 추가 */
  }

#loading-progress-bar {
  width: 200px;
  height: 20px;
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
}

#loading-progress {
  width: 0%;
  height: 100%;
  background-color: #4CAF50;
  transition: width 0.5s ease;
}

#loading-text {
  color: white;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  text-align: center;
}
