diff --git a/src/views/account/AccountDashboardView.vue b/src/views/account/AccountDashboardView.vue
index f6d62b4..4e9f0ca 100644
--- a/src/views/account/AccountDashboardView.vue
+++ b/src/views/account/AccountDashboardView.vue
@@ -371,7 +371,10 @@ onMounted(async () => {
-
+
+ 예상 지출 AI 계산 중…
+ ···
+
+
예상 지출 월말 추정 · AI
{{ won(aiForecast) }}
@@ -612,10 +619,32 @@ h2 {
color: hsla(160, 100%, 32%, 1);
margin-bottom: 0.5rem;
}
-.ai-comment-loading {
+.ai-loading-text {
font-size: 0.85rem;
- opacity: 0.6;
- margin: 0;
+ opacity: 0.65;
+}
+.ai-loading-bar {
+ height: 4px;
+ margin-top: 0.45rem;
+ border-radius: 999px;
+ background: hsla(160, 100%, 37%, 0.15);
+ overflow: hidden;
+}
+.ai-loading-bar > span {
+ display: block;
+ width: 40%;
+ height: 100%;
+ border-radius: 999px;
+ background: hsla(160, 100%, 37%, 0.85);
+ animation: ai-indeterminate 1.1s ease-in-out infinite;
+}
+@keyframes ai-indeterminate {
+ 0% { transform: translateX(-110%); }
+ 100% { transform: translateX(360%); }
+}
+.ie-row .pending {
+ opacity: 0.4;
+ letter-spacing: 2px;
}
.ai-comment-list {
margin: 0;
집계를 분석하고 있어요…
+