/* Chain Widget Styles — Onboarding chain progress tracker */
.chain-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    background: #fff;
    border-radius: var(--radius-md, 12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--gray-200, #e5e7eb);
    padding: 16px 20px;
    min-width: 280px;
    max-width: 360px;
    font-family: inherit;
    display: none;
}

.chain-widget.visible { display: block; }

.chain-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800, #1f2937);
}

.chain-widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400, #9ca3af);
    font-size: 14px;
    padding: 2px;
    height: auto;
}

.chain-widget-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chain-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-500, #6b7280);
}

.chain-step.active { color: var(--brand-orange, #FF8C00); font-weight: 600; }
.chain-step.done { color: #10b981; }

.chain-step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: var(--gray-100, #f3f4f6);
    color: var(--gray-400, #9ca3af);
    flex-shrink: 0;
}

.chain-step.active .chain-step-icon {
    background: rgba(255, 140, 0, 0.1);
    color: var(--brand-orange, #FF8C00);
}

.chain-step.done .chain-step-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
