/* Post-create "what's next" banner — see lifeos-next-steps.js */
.lifeos-next-steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    background: hsl(var(--accent) / 0.4);
    border: 1px solid hsl(var(--border));
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}
.lifeos-next-steps__title {
    font-weight: 600;
    flex-shrink: 0;
}
.lifeos-next-steps__steps {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1 1 auto;
}
.lifeos-next-steps__link {
    color: hsl(var(--primary, 222 47% 51%));
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lifeos-next-steps__link:hover {
    text-decoration: none;
}
.lifeos-next-steps__sep {
    color: hsl(var(--muted-foreground));
    opacity: 0.6;
}
.lifeos-next-steps__close {
    background: transparent;
    border: 0;
    color: hsl(var(--muted-foreground));
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
    flex-shrink: 0;
}
.lifeos-next-steps__close:hover {
    color: hsl(var(--foreground));
}
