.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1); /* 배경 투명도 조정 */
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    /* 다음 속성들이 글자 흐림 현상 해결 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backdrop-filter: blur(0); /* 흐림 효과 제거 */
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    /* 부드러운 애니메이션 */
    will-change: transform;
}

.loading-text {
    margin-top: 20px;
    font-size: 1.1em;
    color: #333;
    font-weight: 500; /* 글자 두께 조정 */
    /* 선명한 텍스트를 위한 설정 */
    text-shadow: 0 0 1px rgba(255,255,255,0.5);
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}