/* 인증 UI 초기 상태 (깜빡임 완전 방지) */
/* 모든 페이지의 head에 이 파일을 포함하세요 */

/* 초기에는 모두 숨김 (스크립트가 즉시 표시) */
#authButtons:not(.auth-initialized),
#userProfile:not(.auth-initialized),
#authButtonsMobile:not(.auth-initialized),
#userProfileMobile:not(.auth-initialized) {
    display: none !important;
}

/* 스크립트가 초기화하면 표시 가능하도록 */
#authButtons.auth-initialized,
#userProfile.auth-initialized,
#authButtonsMobile.auth-initialized,
#userProfileMobile.auth-initialized {
    /* 스크립트의 inline style이 우선하도록 */
}

/* 프로필 컨테이너 높이 고정 (프로필 이미지만 표시하므로 고정 크기) */
#userProfile {
    min-height: 2.5rem; /* 프로필 이미지 높이 + 여백 */
    width: 2.5rem; /* 프로필 이미지 크기에 맞춤 */
}

