/* ============================================
   History Panel & Status Bar Styles
   ============================================ */

/* History Panel */
.history-list { max-height: 200px; overflow-y: auto; }

.history-item {
    padding: 6px 10px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 3px;
}

.history-item:hover { background: var(--bg-light); }
.history-item.current { background: var(--accent-dim); }
.history-item.future { opacity: 0.5; }
.history-icon { font-size: 12px; }

/* Status Bar */
.status-bar {
    height: 22px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 11px;
    color: var(--text-dim);
}

.status-left, .status-right { display: flex; align-items: center; gap: 16px; }
