/* ══════════════════════════════════════════════════════════
   Terminal Stash — Delvs balance, source breakdown,
   transaction log
   ══════════════════════════════════════════════════════════ */

.stash-guest-notice {
    text-align: center;
    padding: 24px 16px;
    color: #8b7355;
    font-style: italic;
}
.stash-guest-hint {
    font-size: 0.8rem;
    color: #a89778;
}

/* ── Balance Display ───────────────────────────────────── */

.stash-balance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    margin-bottom: 16px;
}
.stash-balance-icon {
    font-size: 1.6rem;
    color: #d4a853;
    margin-bottom: 4px;
}
.stash-balance-amount {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #3a2e1e;
    line-height: 1;
}
.stash-balance-label {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.75rem;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ── Source Breakdown ──────────────────────────────────── */

.stash-sources {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 12px 0;
    border-top: 1px solid #d4c9a8;
    border-bottom: 1px solid #d4c9a8;
}
.stash-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.stash-source-value {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 700;
}
.stash-source-value--earn {
    color: #6a8a5a;
}
.stash-source-value--spend {
    color: #b05555;
}
.stash-source-label {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.65rem;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Section Title ─────────────────────────────────────── */

.stash-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #3a2e1e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d4c9a8;
}

/* ── Transaction Log ───────────────────────────────────── */

.stash-log {
    margin-bottom: 24px;
}
.stash-log-list {
    border: 1px solid #c9b99a;
    border-radius: 4px;
    overflow: hidden;
}
.stash-log-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(201, 185, 154, 0.4);
    background: #ede4cc;
}
.stash-log-entry:last-child {
    border-bottom: none;
}
.stash-log-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.stash-log-desc {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3a2e1e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stash-log-date {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.7rem;
    color: #8b7355;
}
.stash-log-amount {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}
.stash-log-amount--earn {
    color: #6a8a5a;
}
.stash-log-amount--spend {
    color: #b05555;
}
.stash-log-empty {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.82rem;
    color: #8b7355;
    font-style: italic;
    text-align: center;
    margin: 0;
}
