/* Path Visualization Styles */

.path-vis-container {
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--app-border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.path-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.path-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    font-family: monospace;
    font-size: 0.9rem;
}

.path-row:last-child {
    border-bottom: none;
}

.path-step {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #f1f5f9;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.path-arrow {
    color: #cbd5e1;
    font-weight: bold;
}

.conversion-badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.conv-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.conv-fail {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
}

.path-stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-card {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
