.guided-tour-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 9998;
}

.guided-tour-highlight {
    position: relative;
    z-index: 9999;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.65), 0 0 0 9999px rgba(15, 23, 42, 0.55);
    border-radius: 6px;
}

.guided-tour-card {
    position: fixed;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
    z-index: 10000;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.guided-tour-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.guided-tour-body {
    font-size: 13px;
    color: #475569;
    margin-bottom: 12px;
}

.guided-tour-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.guided-tour-actions button {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}

.guided-tour-actions .primary {
    background: #1d4ed8;
    color: #fff;
}

.guided-tour-actions .secondary {
    background: #e2e8f0;
    color: #0f172a;
}
