/* 로딩 화면 전체를 덮는 스타일 */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9); /* 반투명 배경 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 가장 위에 표시 */
  }
  
  /* 로딩 스피너 스타일 */
  .spinner {
    width: 60px;
    height: 60px;
    border: 8px solid rgba(0, 0, 0, 0.2); /* 회색 테두리 */
    border-top: 8px solid #4caf50; /* 초록색 테두리 */
    border-radius: 50%; /* 원형 */
    animation: spin 1.2s linear infinite; /* 회전 애니메이션 */
  }
  
  /* 로딩 문구 스타일 */
  #loading-screen p {
    margin-top: 20px;
    font-size: 1.2em;
    color: #333;
    font-family: Arial, sans-serif;
  }
  
  /* 스피너 회전 애니메이션 */
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  