/* Onboarding tour (extracted from main.css) */

/* --- Onboarding Tour --- */
.tour-pill {
    position: fixed;
    top: calc(var(--navbar-height) + 12px);
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    font-size: 14px;
    color: var(--text-primary);
    z-index: 50;
}
.tour-pill-step {
    font-weight: 600;
    color: var(--accent);
}
.tour-pill-label {
    color: var(--text-secondary);
}

.tour-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9000;
}
.tour-spotlight-ring {
    position: fixed;
    z-index: 9001;
    border-radius: 8px;
    outline: 3px solid var(--accent);
    outline-offset: 4px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    transition: top 120ms ease, left 120ms ease,
                width 120ms ease, height 120ms ease;
}
.tour-coachmark {
    position: fixed;
    z-index: 9002;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 16px 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    color: var(--text-primary);
}
.tour-coachmark-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.tour-coachmark-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}
.tour-coachmark-close {
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}
.tour-coachmark-close:hover {
    color: var(--text-primary);
}
.tour-coachmark-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}
.tour-coachmark-skip {
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 0;
    text-decoration: underline;
}
.tour-coachmark-skip:hover {
    color: var(--text-primary);
}

.nav-item-button {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
    padding: 0;
}

